AI-Project/survival/stone.py

10 lines
185 B
Python
Raw Normal View History

2021-03-04 14:07:44 +01:00
import os
2021-03-04 15:02:42 +01:00
from survival.game_object import GameObject
2021-03-04 14:07:44 +01:00
class Stone(GameObject):
def __init__(self, pos):
super().__init__(pos, os.path.join('..', 'assets', 'stone.png'))