AeThex-Engine-Core/engine/modules/aethex_lang/config.py

18 lines
351 B
Python

def can_build(env, platform):
"""AeThex Lang can be built on all platforms."""
return True
def configure(env):
pass
def get_doc_classes():
return [
"AeThexScript",
"AeThexScriptLanguage",
"AeThexCompiler",
"AeThexTokenizer",
"AeThexParser",
]
def get_doc_path():
return "doc_classes"