diff options
| author | Karroffel <therzog@mail.de> | 2017-11-10 12:08:09 +0100 |
|---|---|---|
| committer | Karroffel <therzog@mail.de> | 2017-11-10 12:08:09 +0100 |
| commit | 7ae2de8997fadd692f5e43839633fbfdf3816e66 (patch) | |
| tree | bdc8bbeb41af742e4fe8ed21af933822aecf7450 /modules/gdnative/gdnative_api.json | |
| parent | fd4921375a10123b504b746914715d516aac1216 (diff) | |
| download | redot-engine-7ae2de8997fadd692f5e43839633fbfdf3816e66.tar.gz | |
[GDNative] better API struct versioning
Diffstat (limited to 'modules/gdnative/gdnative_api.json')
| -rw-r--r-- | modules/gdnative/gdnative_api.json | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/modules/gdnative/gdnative_api.json b/modules/gdnative/gdnative_api.json index 2a67911aac..da32dc06e8 100644 --- a/modules/gdnative/gdnative_api.json +++ b/modules/gdnative/gdnative_api.json @@ -1,6 +1,10 @@ { "core": { - "type": "CORE_1_0_0", + "type": "CORE", + "version": { + "major": 1, + "minor": 0 + }, "api": [ { "name": "godot_color_new_rgba", @@ -5604,7 +5608,11 @@ }, "extensions": { "nativescript": { - "type": "NATIVESCRIPT_1_0_0", + "type": "NATIVESCRIPT", + "version": { + "major": 1, + "minor": 0 + }, "api": [ { "name": "godot_nativescript_register_class", @@ -5670,7 +5678,11 @@ ] }, "pluginscript": { - "type": "PLUGINSCRIPT_1_0_0", + "type": "PLUGINSCRIPT", + "version": { + "major": 1, + "minor": 0 + }, "api": [ { "name": "godot_pluginscript_register_language", @@ -5682,7 +5694,11 @@ ] }, "nativearvr": { - "type": "NATIVEARVR_1_0_0", + "type": "NATIVEARVR", + "version": { + "major": 1, + "minor": 0 + }, "api": [ { "name": "godot_arvr_register_interface", |
