parser=argparse.ArgumentParser(description=f"This is the official MineClone 2 Texture Converter. This will convert textures from Minecraft resource packs to a Minetest texture pack. Supported Minecraft version: {SUPPORTED_MINECRAFT_VERSION} (Java Edition)")
parser.add_argument("-i","--input",help="Directory of Minecraft resource pack to convert")
parser.add_argument("-o","--output",default=working_dir,help="Directory in which to put the resulting Minetest texture pack")
parser.add_argument("-p","--pixel-size",type=int,help="Size (in pixels) of the original textures")
parser.add_argument("-d","--dry-run",action="store_true",help="Pretend to convert textures without changing any files")
parser.add_argument("-v","--verbose",action="store_true",help="Print out all copying actions")
parser.add_argument("-def","--default",action="store_true",help="Use the default Minecraft texture pack")
parser.add_argument("-a","--all",action="store_true",help="Convert all known Minecraft texturepacks")