Research portable Memory game | Исследовать портируемую игру Память
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 line
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)