5 lines
162 B
Python
5 lines
162 B
Python
class Field:
|
|
def __init__(self, texture_path, converted_texture):
|
|
self.texture_path = texture_path
|
|
self.converted_texture = converted_texture
|