some updates

This commit is contained in:
2026-05-29 01:49:38 +03:00
parent ab9e5f47b3
commit 363bd9001d
11 changed files with 59 additions and 210 deletions

View File

@@ -11,13 +11,21 @@ public:
virtual EInputType GetInputType() = 0;
virtual void OnGameButton( EInputDeviceType eDevice, EInputButton eScancode, bool bIsPressed ) = 0;
virtual void OnGameAxis( EInputDeviceType eDevice, EInputAxis eAxis, float fValue) = 0;
virtual void OnGameAxis( EInputDeviceType eDevice, EInputAxis eAxis, float fValue ) = 0;
virtual void OnGameAxisDiff( EInputDeviceType eDevice, EInputAxis eAxis, float fValue ) = 0;
virtual void OnButton( EInputDeviceType eDevice, EInputButton eScancode, bool bIsPressed ) = 0;
virtual void OnAxis( EInputDeviceType eDevice, EInputAxis eAxis, float fValue) = 0;
virtual void OnAxis( EInputDeviceType eDevice, EInputAxis eAxis, float fValue ) = 0;
virtual void OnAxisDiff( EInputDeviceType eDevice, EInputAxis eAxis, float fValue ) = 0;
virtual void OnGameButton( EInputDeviceType eDevice, const char *szName, bool bIsPressed ) = 0;
virtual void OnGameAxis( EInputDeviceType eDevice, const char *szName, float fValue ) = 0;
virtual void OnGameAxisDiff( EInputDeviceType eDevice, const char *szName, float fValue ) = 0;
virtual void OnButton( EInputDeviceType eDevice, const char *szName, bool bIsPressed ) = 0;
virtual void OnAxis( EInputDeviceType eDevice, const char *szName, float fValue ) = 0;
virtual void OnAxisDiff( EInputDeviceType eDevice, const char *szName, float fValue ) = 0;
virtual void OnTextWriteUTF8( uint32_t uCode ) = 0;
};