| 63 | #undef DEFINE_INPUT |
| 64 | |
| 65 | struct InputField { |
| 66 | uint32_t input_type; |
| 67 | int32_t input_id; |
| 68 | std::string to_string() const; |
| 69 | auto operator<=>(const InputField& rhs) const = default; |
| 70 | }; |
| 71 | |
| 72 | void poll_inputs(); |
| 73 | float get_input_analog(const InputField& field); |
nothing calls this directly
no outgoing calls
no test coverage detected