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.

11 lines
241B

  1. import arcade
  2. class desktop_Platform:
  3. def __init__(self):
  4. self.cell = 0
  5. self.sprites = arcade.SpriteList()
  6. self.title = ""
  7. self.windowBackgroundColor = arcade.color.WHITE
  8. self.windowHeight = 0
  9. self.windowWidth = 0