eqemu-server/common/platform.h
2013-02-16 16:14:39 -08:00

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