aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities
diff options
context:
space:
mode:
Diffstat (limited to 'src/entities')
-rw-r--r--src/entities/johnsStore.c13
-rw-r--r--src/entities/johnsStore.h11
2 files changed, 24 insertions, 0 deletions
diff --git a/src/entities/johnsStore.c b/src/entities/johnsStore.c
new file mode 100644
index 0000000..85f6303
--- /dev/null
+++ b/src/entities/johnsStore.c
@@ -0,0 +1,13 @@
+#include "johnsStore.h"
+
+void initJohnsStore(Entity* entity)
+{
+}
+
+void updateJohnsStore(Entity* entity, Game* game)
+{
+}
+
+void closeJohnsStore(Entity* entity)
+{
+}
diff --git a/src/entities/johnsStore.h b/src/entities/johnsStore.h
new file mode 100644
index 0000000..d70e99f
--- /dev/null
+++ b/src/entities/johnsStore.h
@@ -0,0 +1,11 @@
+#include "game.h"
+#include "entity.h"
+
+#ifndef JOHNS_STORE_H
+#define JOHNS_STORE_H
+
+void initJohnsStore(Entity* entity);
+void updateJohnsStore(Entity* entity, Game* game);
+void closeJohnsStore(Entity* entity);
+
+#endif