Fixed Button dll input/output.

This commit is contained in:
2025-10-09 07:43:03 -07:00
parent 7db8486f1e
commit d60d4c27ab
3 changed files with 21 additions and 21 deletions

View File

@@ -10,7 +10,7 @@ namespace ehs
{
private:
Array<InputHandler*> handlers;
bool initalized;
bool initialized;
public:
~Input();
@@ -31,13 +31,13 @@ namespace ehs
void Poll();
bool HasHandler(const UInt_64 hashId) const;
bool HasHandler(UInt_64 hashId) const;
bool HasHandler(const Str_8& id) const;
bool AddHandler(InputHandler* handler);
const InputHandler* GetHandler(const UInt_64 hashId) const;
const InputHandler* GetHandler(UInt_64 hashId) const;
const InputHandler* GetHandler(const Str_8& id) const;