I've worked keybinding functionality into Python, but there are some workarounds and notes (See the Jankfile)

This commit is contained in:
John McCardle 2023-07-16 23:30:00 -04:00
commit e85861cbb2
7 changed files with 40 additions and 9 deletions

View file

@ -24,6 +24,6 @@ public:
void update() override final;
void doAction(std::string, std::string) override final;
void sRender() override final;
bool registerActionInjected(int, std::string) override final;
bool unregisterActionInjected(int, std::string) override final;
bool registerActionInjected(int, std::string) override;
bool unregisterActionInjected(int, std::string) override;
};