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