AI-Project/survival/stone.py
2021-03-04 15:02:42 +01:00

10 lines
185 B
Python

import os
from survival.game_object import GameObject
class Stone(GameObject):
def __init__(self, pos):
super().__init__(pos, os.path.join('..', 'assets', 'stone.png'))