13 lines
319 B
Python
13 lines
319 B
Python
from direct.directnotify import DirectNotifyGlobal
|
|
|
|
class SuitInvasionManagerAI:
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('SuitInvasionManagerAI')
|
|
|
|
def __init__(self, air):
|
|
self.air = air
|
|
|
|
def getInvadingCog(self):
|
|
return None, 0
|
|
|
|
def getInvading(self):
|
|
return False
|