mirror of
https://github.com/ioquake/jedi-academy.git
synced 2024-11-13 00:24:18 +00:00
17 lines
265 B
C++
17 lines
265 B
C++
#ifdef _XBOX
|
|
|
|
#ifdef _GAME
|
|
}
|
|
using namespace game;
|
|
#elif defined _CGAME
|
|
}
|
|
using namespace cgame;
|
|
#elif defined _UI
|
|
}
|
|
using namespace ui;
|
|
#else
|
|
// See comment int namespace_begin.h
|
|
//#error Including namespace_end.h, but not in UI/GAME/CGAME
|
|
#endif
|
|
|
|
#endif // _XBOX
|