mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
12 lines
401 B
Python
12 lines
401 B
Python
|
from direct.showbase.RandomNumGen import RandomNumGen
|
||
|
from toontown.cogdominium.CogdoMaze import CogdoMazeFactory
|
||
|
import CogdoMazeGameGlobals as Globals
|
||
|
|
||
|
class DistCogdoMazeGameBase:
|
||
|
|
||
|
def createRandomNumGen(self):
|
||
|
return RandomNumGen(self.doId)
|
||
|
|
||
|
def createMazeFactory(self, randomNumGen):
|
||
|
return CogdoMazeFactory(randomNumGen, Globals.NumQuadrants[0], Globals.NumQuadrants[1])
|