Poodletooth-iLand/toontown/cogdominium/DistCogdoGameBase.py
2015-04-27 19:51:51 -04:00

11 lines
294 B
Python

class DistCogdoGameBase:
def local2GameTime(self, timestamp):
return timestamp - self._startTime
def game2LocalTime(self, timestamp):
return timestamp + self._startTime
def getCurrentGameTime(self):
return self.local2GameTime(globalClock.getFrameTime())