Esempio n. 1
0
 def update(self, interval, world):
     self.dirty = 1
     return Entity.update(self, interval, world)
 def update(self, interval, world):
     self.dirty = 1
     return Entity.update(self, interval, world)
Esempio n. 3
0
 def __init__(self, stateManager, category, drawCallback=None):
     Entity.__init__(self, category, drawCallback)
     self.stateManager = stateManager
Esempio n. 4
0
 def update(self, interval, world):
     self.stateManager.updateStates()
     return Entity.update(self, interval, world)
 def __init__(self, stateManager, category, drawCallback = None):
     Entity.__init__(self, category, drawCallback)
     self.stateManager = stateManager
 def update(self, interval, world):
     self.stateManager.updateStates()
     return Entity.update(self, interval, world)