mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
9 lines
415 B
Python
9 lines
415 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
import DistributedFactoryAI
|
||
|
|
||
|
class DistributedMegaCorpAI(DistributedFactoryAI.DistributedFactoryAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedBrutalFactoryAI')
|
||
|
|
||
|
def __init__(self, air, factoryId, zoneId, entranceId, avIds):
|
||
|
DistributedFactoryAI.DistributedFactoryAI.__init__(self, air, factoryId, zoneId, entranceId, avIds)
|