server/src/kernel/objtypes.h

22 lines
284 B
C
Raw Normal View History

2010-08-08 10:06:34 +02:00
#ifndef H_KRNL_OBJTYPES
#define H_KRNL_OBJTYPES
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
2011-03-07 08:02:35 +01:00
TYP_UNIT,
TYP_REGION,
TYP_BUILDING,
TYP_SHIP,
TYP_FACTION,
TYP_ACTION,
TYP_TRIGGER,
TYP_TIMEOUT
} objtype_t;
2010-08-08 10:06:34 +02:00
#ifdef __cplusplus
}
#endif
#endif