[go: up one dir, main page]

Menu

[899825]: / EmptyCommand.py  Maximize  Restore  History

Download this file

9 lines (6 with data), 181 Bytes

1
2
3
4
5
6
7
8
9
class EmptyCommand:
def __init__(self): pass
def execute(self, context, *playerInput):
print "Nothing to do!"
def __str__(self):
return "EmptyCommand"