66f7ff9b8e
Signed-off-by: aixxe <me@aixxe.net>
12 lines
232 B
C++
12 lines
232 B
C++
#pragma once
|
|
|
|
enum ButtonCode_t;
|
|
|
|
class IInputSystem {
|
|
public:
|
|
bool IsButtonDown(ButtonCode_t button) {
|
|
return GetVirtualFunction<bool(*)(void*, ButtonCode_t)>(this, 11)(this, button);
|
|
}
|
|
};
|
|
|
|
extern IInputSystem* inputsystem; |