diff options
author | quou <quou@disroot.org> | 2024-10-01 23:00:13 +1000 |
---|---|---|
committer | quou <quou@disroot.org> | 2024-10-01 23:00:13 +1000 |
commit | 3aafea3504ffdd929308ce17808768d2aedb80a9 (patch) | |
tree | 47b900e80cfbaa8b7fb09c583dcb98be0487bc50 | |
parent | ea8e7aad4e033ed31f2672b57da40ba5255d4b1c (diff) |
spawn another enemy
-rw-r--r-- | 1bitjam.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -28,6 +28,7 @@ int entrypoint(int argc, const char** argv, Arena* m) { init_world(world); generate_floor(&world->map, 0); inst_enemy(world, enemy_demon, 100 << fbits, 100 << fbits); + inst_enemy(world, enemy_demon, 200 << fbits, 100 << fbits); while (a->o) { fps_begin(&f); while (f.now >= f.next && a->o) { |