diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-13 20:57:32 -0600 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-07-13 20:57:32 -0600 |
commit | 9eeb5293fc0d022298fb772338241aa7e8672dac (patch) | |
tree | d6ddbaf8f0398d6c83125a64a8c42e1c71ea48b4 /src/entities/mussolini.h | |
parent | f368f2811a3f8ca0a4b9572b300358bd17d8dac1 (diff) |
Half working mussolini
Diffstat (limited to 'src/entities/mussolini.h')
-rw-r--r-- | src/entities/mussolini.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/entities/mussolini.h b/src/entities/mussolini.h new file mode 100644 index 0000000..ee595f5 --- /dev/null +++ b/src/entities/mussolini.h @@ -0,0 +1,12 @@ +#include "gameCommon.h" +#include "entity.h" + +#ifndef MUSSOLINI_H +#define MUSSOLINI_H + +void initMussolini(Entity * entity, Game * game); +void closeMussolini(Entity * entity); +void updateMussolini(Game * game, Entity * entity); +void drawMussolini(Game * game, Entity * entity); + +#endif |