blob: 61d843cd66a20e09a4db41d577c3952a9d06ffb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "gameCommon.h"
#include "entity.h"
#ifndef ANTIFA_SHIP_H
#define ANTIFA_SHIP_H
typedef struct AntifaShip {
Vector2 lastMouse;
float forwardSpeed;
} AntifaShip;
void initAntifaShip(Entity * entity, Game * game);
void closeAntifaShip(Entity * entity);
void updateAntifaShip(Game * game, Entity * entity);
void drawAntifaShip(Game * game, Entity * entity);
#endif
|