mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-24 20:22:33 -06:00
8 lines
419 B
Python
8 lines
419 B
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
import DistributedFactoryAI
|
||
|
|
||
|
class DistributedBrutalFactoryAI(DistributedFactoryAI.DistributedFactoryAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedBrutalFactoryAI')
|
||
|
|
||
|
def __init__(self, air, factoryId, zoneId, entranceId, avIds):
|
||
|
DistributedFactoryAI.DistributedFactoryAI.__init__(self, air, factoryId, zoneId, entranceId, avIds)
|