Poodletooth-iLand/toontown/cogdominium/DistCogdoGameBase.py
Master Jumblespeed d882959bfa switch to remote
2015-05-18 22:11:33 -04:00

11 lines
294 B
Python
Executable file

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())