use C++ style structs everywhere

This commit is contained in:
RSDuck
2021-01-02 11:38:06 +01:00
parent e2c61b28e0
commit 7d448d911d
10 changed files with 28 additions and 39 deletions

View File

@ -23,23 +23,21 @@
#include "types.h"
typedef struct
struct ARCode
{
char Name[128];
bool Enabled;
u32 CodeLen;
u32 Code[2*64];
} ARCode;
};
typedef std::list<ARCode> ARCodeList;
typedef struct
struct ARCodeCat
{
char Name[128];
ARCodeList Codes;
} ARCodeCat;
};
typedef std::list<ARCodeCat> ARCodeCatList;