diff options
| author | BastiaanOlij | 2017-10-13 21:49:01 +1100 |
|---|---|---|
| committer | BastiaanOlij | 2017-10-13 21:54:57 +1100 |
| commit | 41e70d4192281f87962c60942d11c351e78c4257 (patch) | |
| tree | bf24f37fc96ea6a6e5e2c47f53d0c0d20c8260d0 /modules/gdnative/config.py | |
| parent | e97ada64135dcdf81ac817ded43c810b3f6883e5 (diff) | |
| download | godot-41e70d4192281f87962c60942d11c351e78c4257.tar.gz godot-41e70d4192281f87962c60942d11c351e78c4257.tar.zst godot-41e70d4192281f87962c60942d11c351e78c4257.zip | |
Diffstat (limited to 'modules/gdnative/config.py')
| -rw-r--r-- | modules/gdnative/config.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/gdnative/config.py b/modules/gdnative/config.py index 9f57b9bb7..c067477a1 100644 --- a/modules/gdnative/config.py +++ b/modules/gdnative/config.py @@ -1,8 +1,12 @@ - def can_build(platform): return True - def configure(env): env.use_ptrcall = True + +def get_doc_classes(): + return ["GDNative", "GDNativeClass", "GDNativeLibrary", "NativeScript"] + +def get_doc_path(): + return "doc_classes"
\ No newline at end of file |
