mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
19 lines
348 B
C
19 lines
348 B
C
#ifndef EQEMU_PLATFORM_H
|
|
#define EQEMU_PLATFORM_H
|
|
|
|
enum EQEmuExePlatform
|
|
{
|
|
ExePlatformNone = 0,
|
|
ExePlatformZone,
|
|
ExePlatformWorld,
|
|
ExePlatformLogin,
|
|
ExePlatformQueryServ,
|
|
ExePlatformUCS,
|
|
ExePlatformLaunch,
|
|
};
|
|
|
|
void RegisterExecutablePlatform(EQEmuExePlatform p);
|
|
const EQEmuExePlatform& GetExecutablePlatform();
|
|
|
|
#endif
|