16 lines
527 B
Python
16 lines
527 B
Python
#image path
|
|
#plants
|
|
class ConStrings:
|
|
flower = r'resources/plants/flower.png'
|
|
bush = r'resources/plants/bush.png'
|
|
ivy = r'resources/plants/ivy.png'
|
|
wheat_dead = r'resources/plants/wheat_dead.png'
|
|
wheat= r'resources/plants/wheat.png'
|
|
eggplant = r'resources/vegies/1.png'
|
|
strawberry = r'resources/fruits/6.png'
|
|
grapes = r'resources/fruits/8.png'
|
|
apple = r'resources/fruits/9.png'
|
|
banana = r'resources/fruits/10.png'
|
|
stone = r'resources/stones/stone.png'
|
|
aim = r'resources/aim.png'
|