29 lines
426 B
C
29 lines
426 B
C
/*
|
|
* ObjectDef.h
|
|
*
|
|
* Overall header file for object structure definitions
|
|
*
|
|
*/
|
|
|
|
#ifndef _objectdef_h
|
|
#define _objectdef_h
|
|
|
|
#include "frame.h"
|
|
#include "pietypes.h"
|
|
|
|
#include "aidef.h"
|
|
#include "functiondef.h"
|
|
#include "movedef.h"
|
|
#include "statsdef.h"
|
|
#include "researchdef.h"
|
|
#include "weapons.h"
|
|
|
|
#include "base.h"
|
|
#include "droiddef.h"
|
|
#include "structuredef.h"
|
|
#include "bulletdef.h"
|
|
#include "featuredef.h"
|
|
|
|
#endif
|
|
|