diff options
author | quou <quou@disroot.org> | 2023-05-07 12:53:46 +1000 |
---|---|---|
committer | quou <quou@disroot.org> | 2023-05-07 12:54:06 +1000 |
commit | 5f341eacdf0d75a4b334969a2d8a4701d61e4d9e (patch) | |
tree | ee3a4c44b92e975530e1e6fed18c8852a6f70a93 /spawner.h | |
parent | 5ef6a71e935e2c3d1e5f9828e8cdbd78403a06a0 (diff) |
Add waves and stuff.
Diffstat (limited to 'spawner.h')
-rw-r--r-- | spawner.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/spawner.h b/spawner.h new file mode 100644 index 0000000..65633c5 --- /dev/null +++ b/spawner.h @@ -0,0 +1,12 @@ +#ifndef spawner_h +#define spawner_h + +struct World; + +int new_spawner( + struct World* world, + int x, + int y +); + +#endif |