Download this file
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"