2020-05-23 20:25:01 +02:00
|
|
|
|
|
|
|
def can_build(env, platform):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def configure(env):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
def get_doc_classes():
|
|
|
|
return [
|
2022-01-12 21:51:32 +01:00
|
|
|
"BiomeTerrarinGenerator",
|
|
|
|
"TMeshInstance"
|
2020-05-23 20:25:01 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
def get_doc_path():
|
|
|
|
return "doc_classes"
|
|
|
|
|