mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
9 lines
214 B
Python
9 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"
|