jediacademy/codemp/namespace_begin.h

15 lines
342 B
C
Raw Normal View History

2013-04-04 22:35:38 +00:00
#ifdef _XBOX
#ifdef _GAME
namespace game {
#elif defined _CGAME
namespace cgame {
#elif defined _UI
namespace ui {
#else
// Hmmm. Some of the module headers end up included in EXE code.
// Let's hope that the apocalpyse can be held at bay.
// #error Including namespace_begin.h, but not in UI/GAME/CGAME
#endif
#endif // _XBOX