aboutsummaryrefslogtreecommitdiff
path: root/src/game.c
diff options
context:
space:
mode:
authornathansmithsmith <nathansmith7@mailfence.com>2023-11-06 21:14:58 -0700
committernathansmithsmith <nathansmith7@mailfence.com>2023-11-06 21:14:58 -0700
commitc28b9fdb3c15248604d38717a03e98c78ac88961 (patch)
treeadf29a1c533d0217403c37e2590028e7fa892586 /src/game.c
parent4ca42bd3b6a55ee92cdf1af0f3137ab815f0375d (diff)
Added kill log
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c23
1 files changed, 2 insertions, 21 deletions
diff --git a/src/game.c b/src/game.c
index 764e2fa..594646d 100644
--- a/src/game.c
+++ b/src/game.c
@@ -28,27 +28,8 @@ void initGame(Game * game) {
// World.
initWorld(&game->world);
- // Debug.
- // WorldEntry entries[31] = {
- // (WorldEntry){ENTITY_ANTIFA, (Vector3){0.0, 0.0, -100.0}, QuaternionIdentity()},
- // (WorldEntry){ENTITY_GENERALE, (Vector3){0.0, 0.0, 6.0}, QuaternionIdentity()},
- // };
-
- // for (int i = 2; i < 31; ++i) {
- // entries[i] = (WorldEntry){ENTITY_SOLDATO, (Vector3){0.0, 0.0, i*10}, QuaternionIdentity()};
- // }
-
- // WorldEntry entries[2] = {
- // (WorldEntry){ENTITY_ANTIFA, (Vector3){0.0, 0.0, 0.0}, QuaternionIdentity()},
- // (WorldEntry){ENTITY_MUSSOLINI, (Vector3){0.0, 0.0, 200.0}, QuaternionIdentity()}
- // };
- //
- // addEntriesToWorld(
- // &game->world,
- // game,
- // entries,
- // sizeof(entries) / sizeof(WorldEntry)
- // );
+ // Kill log lmao.
+ initKillLog(&game->killLog);
// Levels.
initLevels(&game->levels);