当我打电话给pygame时,它似乎没有回应,我想知道是否有办法解决它
def call_Game_Board():#defines a function called call_Game_Board
print("called the game board")
AQADO.Game_Board()#returns function AQADO.Game_Board
pygame.display.update()#Updates the pygame window
感谢所有帮助谢谢:)
答案 0 :(得分:0)
好吧,您必须调用 函数才能调用其他函数。所以它会像:
#Your code here, including the function you listed#
call_Game_Board()
这应该可以解决您的问题。我希望这可以帮助你!