blob: 9ce453dab8d700ce71e7eb19ec39c39a4ceff5d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "gameCommon.h"
#include "entity.h"
#include "PID.h"
#ifndef MUSSOLINI_H
#define MUSSOLINI_H
#define MUSSOLINI_TURN_SPEED 1.0
#define MUSSOLINI_MISSILE_DOWN_COOL 3.0
typedef struct Mussolini {
double timeSinceLastMissile;
} Mussolini;
void initMussolini(Entity * entity, Game * game);
void closeMussolini(Entity * entity);
void updateMussolini(Game * game, Entity * entity);
void drawMussolini(Game * game, Entity * entity);
#endif
|