blob: 15e9009dbedc7961b1414a5c70d29f0ecabc1885 (
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);
void closeAntifaShip(Entity * entity);
void updateAntifaShip(Game * game, Entity * entity, EntityId id);
void drawAntifaShip(Game * game, Entity * entity, EntityId id);
#endif
|