Merge pull request #828 from aaronfranke/fix-constants

pull/833/head
Rémi Verschelde 2022-09-04 20:39:16 +02:00 committed by GitHub
commit f71c711646
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -1005,6 +1005,13 @@ def generate_engine_class_header(class_api, used_classes, fully_used_classes, us
result.append("\t};")
result.append("")
if "constants" in class_api:
for value in class_api["constants"]:
if "type" not in value:
value["type"] = "int"
result.append(f'\tconst {value["type"]} {value["name"]} = {value["value"]};')
result.append("")
if is_singleton:
result.append(f"\tstatic {class_name} *get_singleton();")
result.append("")