mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
6f4ca480b5
This needs a better solution.
39 lines
598 B
C
39 lines
598 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
|
|
|
|
#ifndef APPNAME
|
|
#define APPNAME "Demolition"
|
|
#endif
|
|
|
|
#ifndef APPBASENAME
|
|
#define APPBASENAME "demolition"
|
|
#endif
|