Advertisement
TorroesPrime

movement_command.py

Aug 8th, 2020 (edited)
1,471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1.  
  2. from Command import Command
  3.  
  4. class MovementCommand(Command):
  5.     commandString = ""
  6.     MOVEMENT_COMMANDS = "nsweud"
  7.  
  8.     def __init__(self,s):
  9.         self.dir = s
  10.  
  11.     def execute(self):
  12.         pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement