mirror of
https://github.com/ZDoom/Raze.git
synced 2024-12-12 21:52:01 +00:00
20 lines
222 B
C
20 lines
222 B
C
|
#pragma once
|
||
|
|
||
|
struct sprite_type;
|
||
|
BEGIN_DUKE_NS
|
||
|
|
||
|
#define cmd(a) concmd_ ## a,
|
||
|
#define cmdx(a, b) concmd_ ## a,
|
||
|
#define cmda(a,b)
|
||
|
|
||
|
enum EConCommands
|
||
|
{
|
||
|
#include "condef.h"
|
||
|
};
|
||
|
|
||
|
#undef cmd
|
||
|
#undef cmdx
|
||
|
#undef cmda
|
||
|
|
||
|
END_DUKE_NS
|