diff options
| author | nathan <nathansmith@disroot.org> | 2025-12-26 14:14:54 +0000 |
|---|---|---|
| committer | nathan <nathansmith@disroot.org> | 2025-12-26 14:14:54 +0000 |
| commit | c9ae1941816183553c8c4313eac27cc831cbefba (patch) | |
| tree | 053ab2ca0819f3c9021574bcce9a24fc69cadc95 /src/entities | |
| parent | a5443e22bfce9ac00fdc6e746e17eb4aa68565f2 (diff) | |
| download | FindThings-c9ae1941816183553c8c4313eac27cc831cbefba.tar.gz FindThings-c9ae1941816183553c8c4313eac27cc831cbefba.tar.bz2 FindThings-c9ae1941816183553c8c4313eac27cc831cbefba.zip | |
Working on buildings
Diffstat (limited to 'src/entities')
| -rw-r--r-- | src/entities/johnsStore.c | 13 | ||||
| -rw-r--r-- | src/entities/johnsStore.h | 11 |
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 |
