- route menu's CheckGame call through SysCallbacks.

Needed to be able to move the menu into the backend.
This commit is contained in:
Christoph Oelckers 2020-10-04 21:03:44 +02:00
commit f30285b0ce
2 changed files with 7 additions and 0 deletions

View file

@ -22,6 +22,7 @@ struct SystemCallbacks
void (*MenuDim)();
FString(*GetPlayerName)(int i);
bool (*DispatchEvent)(event_t* ev);
bool (*CheckGame)(const char* nm);
};
extern SystemCallbacks sysCallbacks;