blob: a1b97d25c3a401c8da944c2f04fb805442af987d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "gameCommon.h"
#include "entity.h"
#ifndef ANTIFA_SHIP_H
#define ANTIFA_SHIP_H
void initAntifaShip(Entity * entity, Game * game);
void closeAntifaShip(Entity * entity);
void updateAntifaShip(Game * game, Entity * entity, EntityId id);
void drawAntifaShip(Game * game, Entity * entity, EntityId id);
#endif
|