jedi-academy/codemp/namespace_end.h

17 lines
261 B
C
Raw Normal View History

2013-04-19 02:52:48 +00:00
#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
2013-04-04 22:35:38 +00:00
#endif _XBOX