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