player spawns more to the right now

This commit is contained in:
Sara 2023-11-01 23:01:10 +01:00
parent 5408ac3ad0
commit 1d46d9dc6f

View file

@ -29,7 +29,7 @@ void play() {
g_camera.fov = 40; g_camera.fov = 40;
player = malloc(sizeof(Player)); player = malloc(sizeof(Player));
player_spawn(player, (Vector){1.25f, 20.f}); player_spawn(player, (Vector){8.25f, 15.f});
level = level_load("level_0"); level = level_load("level_0");
} }