aboutsummaryrefslogtreecommitdiff
path: root/src/entities/caporale.h
blob: e855b30d2570348c86fc85de3122d142e8459d45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "gameCommon.h"
#include "entity.h"

#ifndef CAPORALE_H
#define CAPORALE_H

typedef struct Caporale {
	EntityFlyToPointInfo flyToPlayer;
} Caporale;

void initCaporale(Entity * entity, Game * game);
void closeCaporale(Entity * entity);
void updateCaporale(Game * game, Entity * entity);
void drawCaporale(Game * game, Entity * entity);

#endif