sampy3/sampy/client/player.py
2023-03-15 07:12:47 +01:00

16 lines
266 B
Python

from ctypes import c_ubyte
class Player:
id: c_ubyte
username: str
score: int
ping: int
health: float
armor: float
# position: Vector3 # TODO
rotation: float
def __init__(self, username: str):
self.username = username