initial commit

This commit is contained in:
2025-03-09 18:52:52 +01:00
commit 2c860be64b
6 changed files with 72 additions and 0 deletions

13
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