16 lines
266 B
Python
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
|