10 lines
382 B
Python
10 lines
382 B
Python
from enum import Enum
|
|
class House_image(Enum):
|
|
house = "images/house.png"
|
|
plastic = "images/house_plastic.png"
|
|
metal = "images/house_metal.png"
|
|
glass = "images/house_glass.png"
|
|
plastic_glass = "images/house_plastic_glass.png"
|
|
plastic_metal = "images/house_plastic_metal.png"
|
|
glass_metal = "images/house_glass_metal.png"
|
|
full = "images/house_full.png" |