mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-05-03 13:03:54 +00:00
feat(profile): fix GameClientCommands
This commit is contained in:
parent
48e5240b4a
commit
8f4b08b0e6
3 changed files with 47 additions and 23 deletions
|
|
@ -0,0 +1,18 @@
|
|||
#ifndef CLIENT_GAME_CLIENT_COMMANDS_H
|
||||
#define CLIENT_GAME_CLIENT_COMMANDS_H
|
||||
|
||||
DECLARE_STRUCT(GameClientCommands);
|
||||
DECLARE_STRUCT(GameClientCommands__v_table);
|
||||
|
||||
struct GameClientCommands__v_table {
|
||||
E_METHOD(GameClientCommands, void, Install);
|
||||
E_METHOD(GameClientCommands, void, Uninstall);
|
||||
// void* Install;
|
||||
// void* Uninstall;
|
||||
};
|
||||
|
||||
struct GameClientCommands {
|
||||
GameClientCommands__v_table* v_table;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue