Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class InfoImage:
- path = ""
- name=""
- extension=""
- img=None
- def __init__(self):
- self.path = ""
- self.name = ""
- self.extension=""
- self.img=None
- class MaskedImage:
- image = InfoImage()
- mask = InfoImage()
- def __init__(self):
- self.image = InfoImage()
- self.mask = InfoImage()
- class BackgroundSet:
- name = ""
- images = []
- def __init__(self):
- self.name = ""
- self.images=[]
Advertisement
Add Comment
Please, Sign In to add comment