diff options
author | red031000 <rubenru09@aol.com> | 2020-10-19 01:40:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 01:40:03 +0100 |
commit | c9d369b8d0abf7d75943e25e79e11df3e941e69a (patch) | |
tree | 15117926ef46a611e602ecf3cdd0edad5939f081 /include/unkStruct.h | |
parent | 4965b8101131432139e8d2e9e309440ad2acbd2f (diff) | |
parent | fbd635cb89c6e6f8f0e1e9603a515b902e69de06 (diff) |
Merge pull request #149 from mparisi20/master
Decompile code_801DAAE0.cpp
Diffstat (limited to 'include/unkStruct.h')
-rw-r--r-- | include/unkStruct.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/unkStruct.h b/include/unkStruct.h index 73d3cfc..d1c304f 100644 --- a/include/unkStruct.h +++ b/include/unkStruct.h @@ -4,15 +4,12 @@ // Note: Many instances of this class appear in .sbss, and they are partially initialized
// by the static initializers in .ctors
-class unkStruct
+struct unkStruct
{
u8 unk0;
u16 unk2;
u8 unk4;
u8 unk5;
- u8 unk6;
- u8 unk7;
-public:
unkStruct(u8 p1, u16 p2, u8 p3)
: unk0(p1), unk2(p2), unk4(p3) { }
};
|