1def can_build(env, platform):
2    return True
3
4
5def configure(env):
6    pass
7
8
9def get_doc_classes():
10    return [
11        "@GDScript",
12        "GDScript",
13        "GDScriptFunctionState",
14    ]
15
16
17def get_doc_path():
18    return "doc_classes"
19