MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / getInputs

Method getInputs

src/Core/Input/InputManager.cpp:277–286  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

275 }
276
277 std::vector<InputButton*> InputManager::getInputs()
278 {
279 std::vector<InputButton*> inputs;
280 inputs.reserve(m_inputs.size());
281 for (auto& [_, input] : m_inputs)
282 {
283 inputs.push_back(input.get());
284 }
285 return inputs;
286 }
287
288 std::vector<InputButton*> InputManager::getInputs(InputType filter)
289 {

Callers

nothing calls this directly

Calls 5

reserveMethod · 0.45
sizeMethod · 0.45
push_backMethod · 0.45
getMethod · 0.45
isMethod · 0.45

Tested by

no test coverage detected