mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-29 15:32:38 +00:00
358d1a460f
# Conflicts: # source/games/duke/src/zz_gamedef.cpp
19 lines
222 B
C
19 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
|