feat(profile): fix GameClientCommands

This commit is contained in:
phaneron 2026-04-30 01:23:55 -04:00
parent 48e5240b4a
commit 8f4b08b0e6
3 changed files with 47 additions and 23 deletions

View file

@ -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