Reimplementing DearImGui

This commit is contained in:
2025-03-22 01:04:15 +01:00
parent dfa5d1245f
commit 9a8ab7853a
8 changed files with 768 additions and 4 deletions

View File

@@ -245,7 +245,6 @@ generate_member_serialization :: (struct_type: *Type_Info_Struct, builder: *Stri
generate_member_deserialization :: (struct_type: *Type_Info_Struct, builder: *String_Builder, path: string = "") {
for struct_type.members {
if should_serialize(struct_type, it) {
print("DESER %\n", struct_type.name);
new_path : string;
if path.count == 0 {
new_path = it.name;