mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-24 20:22:33 -06:00
12 lines
383 B
Python
12 lines
383 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
import DistributedFactory
|
||
|
|
||
|
class DistributedBrutalFactory(DistributedFactory.DistributedFactory):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedBrutalFactory')
|
||
|
|
||
|
def __init__(self, cr):
|
||
|
DistributedFactory.DistributedFactory.__init__(self, cr)
|
||
|
|
||
|
def getFloorOuchLevel(self):
|
||
|
return 8
|