11 lines
292 B
Python
11 lines
292 B
Python
from mcpacker.model.resourcepack.kind import Kind
|
|
|
|
|
|
# Class ############################################################################################
|
|
|
|
class Texture:
|
|
|
|
def __init__(self, imageFileName:str, kind:Kind):
|
|
self.imageFileName = imageFileName
|
|
self.kind = kind
|