- added two more system callbacks for menu customization.

This commit is contained in:
Christoph Oelckers 2020-10-08 17:42:46 +02:00
commit cf7518fe43
5 changed files with 14 additions and 6 deletions

View file

@ -24,6 +24,8 @@ struct SystemCallbacks
bool (*DispatchEvent)(event_t* ev);
bool (*CheckGame)(const char* nm);
int (*GetGender)();
void (*MenuClosed)();
bool (*CheckMenudefOption)(const char* opt);
};
extern SystemCallbacks sysCallbacks;