forked from VoxeLibre/VoxeLibre
10 lines
214 B
Python
10 lines
214 B
Python
|
import os
|
||
|
# Constants
|
||
|
SUPPORTED_MINECRAFT_VERSION = "1.20"
|
||
|
|
||
|
# Helper vars
|
||
|
home = os.environ["HOME"]
|
||
|
mineclone2_path = home + "/.minetest/games/mineclone2"
|
||
|
working_dir = os.getcwd()
|
||
|
appname = "Texture_Converter.py"
|