nsi-rpg/src/custom_AI.py

11 lines
220 B
Python
Raw Normal View History

2024-01-02 14:55:40 +00:00
from src.engine.entity import Entity
from src.engine.mobs_AI import MobAI
class WolfAI(MobAI):
def __init__(self, entity: Entity):
super().__init__(entity)
def update(self):
self.entity.x += 1