10 lines
No EOL
175 B
Python
10 lines
No EOL
175 B
Python
class Player:
|
|
def __init__(self) -> None:
|
|
self.health = 100
|
|
self.x = 0
|
|
self.y = 0
|
|
|
|
|
|
class DungeonGame:
|
|
def __init__(self) -> None:
|
|
pass |