Research portable Memory game | Исследовать портируемую игру Память
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

10 行
273B

  1. import arcade
  2. class Window(arcade.Window):
  3. def __init__(self):
  4. super().__init__(800, 600, "OGS Memory")
  5. arcade.set_background_color(arcade.color.WHITE)
  6. def on_draw(self):
  7. arcade.start_render()
  8. arcade.draw_circle_filled(400, 300, 15, arcade.color.BLUE)