LogicGate for non-AI

This commit is contained in:
Dave Schuyler 2003-11-13 20:11:07 +00:00
parent 1c638ea9ba
commit d342525ea9
2 changed files with 10 additions and 1 deletions

View File

@ -7,6 +7,7 @@ import DirectNotifyGlobal
import EditMgr import EditMgr
import EntrancePoint import EntrancePoint
import LevelMgr import LevelMgr
import LogicGate
import ZoneEntity import ZoneEntity
import ModelEntity import ModelEntity
import PathEntity import PathEntity
@ -34,7 +35,7 @@ class EntityCreator(EntityCreatorBase.EntityCreatorBase):
'editMgr': EditMgr.EditMgr, 'editMgr': EditMgr.EditMgr,
'entrancePoint': EntrancePoint.EntrancePoint, 'entrancePoint': EntrancePoint.EntrancePoint,
'levelMgr': LevelMgr.LevelMgr, 'levelMgr': LevelMgr.LevelMgr,
'logicGate': nothing, 'logicGate': LogicGate.LogicGate,
'model' : ModelEntity.ModelEntity, 'model' : ModelEntity.ModelEntity,
'nodepath': BasicEntities.NodePathEntity, 'nodepath': BasicEntities.NodePathEntity,
'path' : PathEntity.PathEntity, 'path' : PathEntity.PathEntity,

8
direct/src/level/LogicGate.py Executable file
View File

@ -0,0 +1,8 @@
import LogicGateAI
class LogicGate(LogicGateAI.LogicGateAI):
"""
"""
pass