REFACTOR: Split into modules (controller, models, and utils)

This commit is contained in:
2025-03-15 22:50:22 +01:00
parent 37e88f063e
commit 19934aa911
12 changed files with 34 additions and 38 deletions

13
models/player.py Normal file
View File

@@ -0,0 +1,13 @@
class Player:
def __init__(self, name, steam_id, x=0, y=0, z=0, pitch=0, yaw=0):
self.name = name
self.steam_id = steam_id
self.x = x
self.y = y
self.z = z
self.pitch = pitch
self.yaw = yaw # Probably only need this if top-down
self.dead = False