Remove "typedef struct" or "typedef enum" from a few places

This commit is contained in:
brainiac
2025-12-28 02:25:43 -08:00
parent b8deacca01
commit 72fa8cf845
17 changed files with 42 additions and 43 deletions
+3 -2
View File
@@ -21,13 +21,14 @@
#pragma pack(push)
#pragma pack(1)
typedef struct ZBSP_Node {
struct ZBSP_Node {
int32 node_number;
float normal[3], splitdistance;
int32 region;
int32 special;
int32 left, right;
} ZBSP_Node;
};
#pragma pack(pop)