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.

desktop_Platform.py 324B

3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
12345678910111213
  1. import arcade
  2. class desktop_Platform:
  3. def __init__(self):
  4. self.c = None
  5. self.cell = 0
  6. self.sprites = arcade.SpriteList()
  7. self.textures = []
  8. self.windowAntialiasing = False
  9. self.windowBackgroundColor = arcade.color.WHITE
  10. self.windowHeight = 0
  11. self.windowTitle = ""
  12. self.windowWidth = 0