2018-11-30 15:02:50 +00:00
|
|
|
#include "gamemode_client.h"
|
|
|
|
|
2018-12-03 10:40:40 +00:00
|
|
|
extern "C" int GameModeRequestStart() {
|
|
|
|
return gamemode_request_start();
|
2018-11-30 15:02:50 +00:00
|
|
|
}
|
|
|
|
|
2018-12-03 10:40:40 +00:00
|
|
|
extern "C" int GameModeRequestEnd() {
|
|
|
|
return gamemode_request_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int GameModeQueryStatus() {
|
|
|
|
return gamemode_query_status();
|
2018-11-30 15:02:50 +00:00
|
|
|
}
|