Last active
October 16, 2022 17:38
-
-
Save StarrFox/70f519242cc9b7f1430cdc63c0922e41 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": 2, | |
| "classes": { | |
| "class hash (as string)": { | |
| "bases": ["class base classes"], | |
| "name": "class name", | |
| "singleton": true, | |
| "properties": { | |
| "property name": { | |
| "type": "property type", | |
| "id": 123, | |
| "offset": 123, | |
| "flags": 123, | |
| "container": "container name", | |
| "dynamic": true, | |
| "pointer": true, | |
| "hash": 123, | |
| "enum_options": { | |
| "option name": 123, | |
| // __DEFAULT is a string | |
| "__DEFAULT": "option name" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": 2, | |
| "classes": { | |
| "class name": { | |
| "bases": ["class base classes"], | |
| "hash": 123, | |
| "singleton": true, | |
| "properties": { | |
| "property name": { | |
| "type": "property type", | |
| "id": 123, | |
| "offset": 123, | |
| "flags": 123, | |
| "container": "container name", | |
| "dynamic": true, | |
| "pointer": true, | |
| "hash": 123, | |
| "enum_options": { | |
| "option name": 123, | |
| // __DEFAULT is a string | |
| "__DEFAULT": "option name" | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment