28 lines
421 B
C
28 lines
421 B
C
#ifndef CENTERY_H
|
|
#define CENTERY_H
|
|
#include "../entity.h"
|
|
|
|
typedef struct {
|
|
entity* target;
|
|
int weapon;
|
|
int classification;
|
|
int tear;
|
|
int alert;
|
|
int mode;
|
|
|
|
int health;
|
|
int ac;
|
|
int str;
|
|
int wis;
|
|
int dex;
|
|
} centery;
|
|
|
|
int CreateCentery(int tear, int classification);
|
|
|
|
int ServerUpdate(void*);
|
|
int ClientUpdate(int, void*);
|
|
int Init(void*);
|
|
int Free(void*);
|
|
|
|
#endif // !CENTERY_H
|