def Resume(self): print("Resuming Game!!!!") sendkeys.SendScanCodeInput(0x19)
def MoveRight(self): print("Move Right") sendkeys.SendScanCodeInput(0xCD)
def Pause(self): print("Pausing Game!!!!") sendkeys.SendScanCodeInput(0x19)
def MoveLeft(self): print("Move Left") sendkeys.SendScanCodeInput(0xCB)
def MoveDown(self): print("Move Down") sendkeys.SendScanCodeInput(0xD0)
def MoveUp(self): print("Move Up") sendkeys.SendScanCodeInput(0xC8)
def StartGame(self): print(" Starting Game") sendkeys.SendScanCodeInput(0x02)
def InsertCoin(self): print("Inserting Coin") sendkeys.SendScanCodeInput(0x06)