aboutsummaryrefslogtreecommitdiff
path: root/src/game.c
diff options
context:
space:
mode:
authornathansmithsmith <thenathansmithsmith@gmail.com>2023-07-23 18:53:25 -0600
committernathansmithsmith <thenathansmithsmith@gmail.com>2023-07-23 18:53:25 -0600
commit5a3b3a062862cdeee96b3ec4641ac684b28659f8 (patch)
tree2994bea3543c1bc694f18f2bc26b0459178759fa /src/game.c
parenta408b352f13df546b2262ca01cf162b60891cdae (diff)
Soldato following
Diffstat (limited to 'src/game.c')
-rw-r--r--src/game.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game.c b/src/game.c
index f27449f..a210e83 100644
--- a/src/game.c
+++ b/src/game.c
@@ -24,11 +24,11 @@ void initGame(Game * game) {
initWorld(&game->world);
// Debug.
- WorldEntry entries[101] = {
- (WorldEntry){ENTITY_ANTIFA, Vector3Zero(), QuaternionIdentity()},
+ WorldEntry entries[31] = {
+ (WorldEntry){ENTITY_ANTIFA, (Vector3){0.0, 0.0, -100.0}, QuaternionIdentity()},
};
- for (int i = 1; i < 101; ++i) {
+ for (int i = 1; i < 31; ++i) {
entries[i] = (WorldEntry){ENTITY_SOLDATO, (Vector3){0.0, 0.0, i*10}, QuaternionIdentity()};
}