Mercurial > parpg-source
view mode.py @ 126:f7543a85c2ea
The stopActions method in the Hud class now drops the item that is currently dragged onto the map.
author | KarstenBock@gmx.net |
---|---|
date | Fri, 07 Oct 2011 14:16:21 +0200 |
parents | e856b604b650 |
children |
line wrap: on
line source
from parpg.bGrease.mode import * import abc class FifeManager(BaseManager): def __init__(self): self.modes = [] def _pump(self): if self.current_mode: self.current_mode.pump(self.current_mode.engine.getTimeManager().getTimeDelta() / 1000.0) class FifeMode(BaseMode): def __init__(self): BaseMode.__init__(self) @abc.abstractmethod def pump(self, dt): """Performs actions every frame"""