mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
14 lines
384 B
Python
14 lines
384 B
Python
|
from direct.distributed.DistributedObjectAI import DistributedObjectAI
|
||
|
from direct.fsm import ClassicFSM, State
|
||
|
|
||
|
class DistributedPillowAI(DistributedObjectAI):
|
||
|
|
||
|
def __init__(self, air):
|
||
|
DistributedObjectAI.__init__(self, air)
|
||
|
|
||
|
def generate(self):
|
||
|
DistributedObjectAI.generate(self)
|
||
|
|
||
|
def delete(self):
|
||
|
DistributedObjectAI.delete(self)
|