working on adding a entity workflow
This commit is contained in:
27
source/game_source/entities/Centery.h
Normal file
27
source/game_source/entities/Centery.h
Normal file
@@ -0,0 +1,27 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user