2019-09-21 18:59:54 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef NO_NAMESPACE
|
|
|
|
|
2020-06-11 07:22:16 +00:00
|
|
|
#define BEGIN_DUKE_NS namespace Duke3d {
|
2019-09-21 18:59:54 +00:00
|
|
|
#define END_DUKE_NS }
|
|
|
|
|
2020-06-11 07:22:16 +00:00
|
|
|
#define BEGIN_EDUKE_NS namespace Duke {
|
|
|
|
#define END_EDUKE_NS }
|
|
|
|
|
2020-03-18 07:15:45 +00:00
|
|
|
#define BEGIN_RR_NS namespace Redneck {
|
2019-09-21 18:59:54 +00:00
|
|
|
#define END_RR_NS }
|
|
|
|
|
|
|
|
#define BEGIN_BLD_NS namespace Blood {
|
|
|
|
#define END_BLD_NS }
|
|
|
|
|
2019-10-09 16:09:05 +00:00
|
|
|
#define BEGIN_SW_NS namespace ShadowWarrior {
|
2019-09-21 18:59:54 +00:00
|
|
|
#define END_SW_NS }
|
|
|
|
|
2020-10-10 08:11:22 +00:00
|
|
|
#define BEGIN_PS_NS namespace Exhumed {
|
2019-11-22 23:11:37 +00:00
|
|
|
#define END_PS_NS }
|
|
|
|
|
2019-09-21 18:59:54 +00:00
|
|
|
#else
|
2020-03-18 07:15:45 +00:00
|
|
|
|
2020-06-11 07:22:16 +00:00
|
|
|
#define BEGIN_EDUKE_NS
|
|
|
|
#define END_EDUKE_NS
|
|
|
|
|
2019-09-21 18:59:54 +00:00
|
|
|
#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
|
|
|
|
|
2019-11-22 23:11:37 +00:00
|
|
|
#define BEGIN_PS_NS
|
|
|
|
#define END_PS_NS
|
|
|
|
|
2019-09-21 18:59:54 +00:00
|
|
|
#endif
|
2019-10-19 18:25:58 +00:00
|
|
|
|