11 lines
132 B
Python
11 lines
132 B
Python
|
from WaitState import WaitState
|
||
|
|
||
|
|
||
|
class DeadState(WaitState):
|
||
|
def handle(self, context):
|
||
|
pass
|
||
|
|
||
|
|
||
|
def tic(self, context):
|
||
|
pass
|