untitledcyberbonk2077/enemy.py

13 lines
208 B
Python
Raw Normal View History

2025-01-12 16:19:11 +01:00
class Enemy:
def __init__(self):
self.name = "Dummy"
self.hp = 10
self.mp = 0
def show_dummy(self):
print(f"Name: {self.name}")
print(f"HP: {self.hp}")