player and entity physics improvements

This commit is contained in:
2025-10-01 00:40:47 +02:00
parent 11f76ca429
commit bd2c87ddd1
7 changed files with 444 additions and 105 deletions

View File

@@ -45,7 +45,7 @@ internal class Program
Vector3 startPos = new Vector3(15, 64, 15);
Player player = new Player(startPos, world);
window.Update += player.Tick;
window.Tick += player.Tick;
window.Update += player.Update;
window.Run();