mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
11 lines
373 B
Python
11 lines
373 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
import DistributedFactory
|
|
|
|
class DistributedMegaCorp(DistributedFactory.DistributedFactory):
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedMegaCorp')
|
|
|
|
def __init__(self, cr):
|
|
DistributedFactory.DistributedFactory.__init__(self, cr)
|
|
|
|
def getFloorOuchLevel(self):
|
|
return 8
|