aboutsummaryrefslogtreecommitdiff
path: root/src/entities/soldato.h
blob: 6992e00e9b82f8a712461bce4126e564b8fb2d91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "gameCommon.h"
#include "entity.h"

#ifndef SOLDATO_H
#define SOLDATO_H

void initSoldato(Entity * entity, Game * game);
void closeSoldato(Entity * entity);
void updateSoldato(Game * game, Entity * entity);
void drawSoldato(Game * game, Entity * entity);

#endif