您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
258B

  1. import arcade
  2. class desktop_Platform:
  3. def __init__(self):
  4. self.c = None
  5. self.ctrl = None
  6. self.player = None
  7. self.statics = {}
  8. self.playerSprites = arcade.SpriteList()
  9. self.staticSprites = arcade.SpriteList()
  10. self.textures = {}