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

Class InvalidInputButtonState

include/Core/Input/Exceptions.hpp:23–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21 };
22
23 class InvalidInputButtonState : public Exception
24 {
25 public:
26 InvalidInputButtonState(std::string_view state, DebugInfo info)
27 : Exception("InvalidInputButtonState", info)
28 {
29 this->error("'{}' is not a valid InputButtonState value", state);
30 this->hint(
31 "Try one of the following values : (Idle, Hold, Pressed, Released)");
32 }
33 };
34
35 class UnknownInputAction : public Exception
36 {

Callers 3

stringToInputButtonStateFunction · 0.85
inputButtonStateToStringFunction · 0.85
makeCombinationMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected