aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities/stickyNickel.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities/stickyNickel.h')
-rw-r--r--src/entities/stickyNickel.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/entities/stickyNickel.h b/src/entities/stickyNickel.h
new file mode 100644
index 0000000..b7c938e
--- /dev/null
+++ b/src/entities/stickyNickel.h
@@ -0,0 +1,13 @@
+#include "game.h"
+#include "entity.h"
+
+#ifndef STICKY_NICKEL_H
+#define STICKY_NICKEL_H
+
+#define STICKY_NICKEL_WIDTH 32.0
+#define STICKY_NICKEL_HEIGHT 32.0
+
+void initStickyNickel(Entity* entity);
+void updateStickyNickel(Entity* entity, Game* game);
+
+#endif