mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
15 lines
279 B
C++
15 lines
279 B
C++
#include "platform.h"
|
|
|
|
EQEmuExePlatform exe_platform = ExePlatformNone;
|
|
|
|
void RegisterExecutablePlatform(EQEmuExePlatform p) {
|
|
exe_platform = p;
|
|
}
|
|
|
|
const EQEmuExePlatform& GetExecutablePlatform() {
|
|
return exe_platform;
|
|
}
|
|
|
|
int GetExecutablePlatformInt(){
|
|
return exe_platform;
|
|
} |