aboutsummaryrefslogtreecommitdiff
path: root/src/entities/soldato.h
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-07-07 23:10:23 -0600
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-07-07 23:10:23 -0600
commite5268813dcbdc0d90a081b2223ebc21749038635 (patch)
tree7c917996749e4123fb1fe49ddd1ed3b8f7e92334 /src/entities/soldato.h
parenta90e1987de75cfecc2693952625af8cce507ae95 (diff)
Better world
Diffstat (limited to 'src/entities/soldato.h')
-rw-r--r--src/entities/soldato.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/entities/soldato.h b/src/entities/soldato.h
new file mode 100644
index 0000000..4069b26
--- /dev/null
+++ b/src/entities/soldato.h
@@ -0,0 +1,12 @@
+#include "gameCommon.h"
+#include "entity.h"
+
+#ifndef SOLDATO_H
+#define SOLDATO_H
+
+void initSoldato(Entity * entity, Game * game);
+void closeSoldato(Entity * entity);
+void updateSoldato(Game * game, Entity * entity, EntityId id);
+void drawSoldato(Game * game, Entity * entity, EntityId id);
+
+#endif