blob: e607ab3371eeeb6d6e9ed7356fd67054d3549f48 (
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 50.0 // 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
|