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.

16 lines
408B

  1. class gui_TextureDescription:
  2. def __init__(self):
  3. self.fileName = ""
  4. self.height = 0
  5. self.width = 0
  6. self.x = 0
  7. self.y = 0
  8. def __repr__(self):
  9. return self.__str__()
  10. def __str__(self):
  11. return f"gui_TextureD(fileN/height/width/x/y: '{self.fileName}'/'{self.height}'/'{self.width}'/'{self.x}'/'{self.y}')"
  12. def gui_createTextureDescription():
  13. return gui_TextureDescription()