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