42_ft_transcendence/games/objects/Position.py
2024-01-16 17:47:48 +01:00

10 lines
240 B
Python

from typing import Union
class Position:
def __init__(self, position = 0, time: int = 0) -> None:
self.time = time
self.position = position
def copy(self):
return Position(self.position, self.time)