mirror of
https://github.com/SWG-Source/src.git
synced 2026-07-28 22:15:49 -04:00
23 lines
265 B
C
23 lines
265 B
C
#ifndef BASE_EVENT_H
|
|
#define BASE_EVENT_H
|
|
|
|
#ifdef WIN32
|
|
|
|
#include "win32/Event.h"
|
|
|
|
#elif linux
|
|
|
|
#include "linux/Event.h"
|
|
|
|
#elif sparc
|
|
|
|
#include "solaris/Event.h"
|
|
|
|
#else
|
|
|
|
#error /Base/Event.h: Undefine platform type
|
|
|
|
#endif
|
|
|
|
#endif // BASE_EVENT_H
|