blob: 7492751389cabefb1a6503027470186f4b344711 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "gameCommon.h"
#include "entity.h"
#ifndef MARESCIALLO_H
#define MARESCIALLO_H
#define MARESCIALLO_CIRCLE_AT_DIS 200.0
typedef struct Maresciallo {
EntityFlyToPointInfo flyAway;
} Maresciallo;
void initMaresciallo(Entity * entity, Game * game);
void closeMaresciallo(Entity * entity);
void updateMaresciallo(Game * game, Entity * entity);
void drawMaresciallo(Game * game, Entity * entity);
#endif
|