player now spawns at 5,-5

This commit is contained in:
Sara 2023-10-19 13:50:43 +02:00
parent b8ae02109a
commit 092e8670cd

View file

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