#include "gameCommon.h"
#include "entity.h"

#ifndef MARESCIALLO_H
#define MARESCIALLO_H

void initMaresciallo(Entity * entity, Game * game);
void closeMaresciallo(Entity * entity);
void updateMaresciallo(Game * game, Entity * entity);
void drawMaresciallo(Game * game, Entity * entity);

#endif