mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
31 lines
464 B
C
31 lines
464 B
C
#pragma once
|
|
|
|
#ifndef NO_NAMESPACE
|
|
|
|
#define BEGIN_DUKE_NS namespace Duke {
|
|
#define END_DUKE_NS }
|
|
|
|
#define BEGIN_RR_NS namespace Redneck {
|
|
#define END_RR_NS }
|
|
|
|
#define BEGIN_BLD_NS namespace Blood {
|
|
#define END_BLD_NS }
|
|
|
|
#define BEGIN_SW_NS namespace ShadowWarrior {
|
|
#define END_SW_NS }
|
|
|
|
#else
|
|
|
|
#define BEGIN_DUKE_NS
|
|
#define END_DUKE_NS
|
|
|
|
#define BEGIN_RR_NS
|
|
#define END_RR_NS
|
|
|
|
#define BEGIN_BLD_NS
|
|
#define END_BLD_NS
|
|
|
|
#define BEGIN_SW_NS
|
|
#define END_SW_NS
|
|
|
|
#endif
|