blob: d1c304f803364b5c94beca96f4a7593148c90b90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef POKEREVO_CODE_UNKSTRUCT_H
#define POKEREVO_CODE_UNKSTRUCT_H
// Note: Many instances of this class appear in .sbss, and they are partially initialized
// by the static initializers in .ctors
struct unkStruct
{
u8 unk0;
u16 unk2;
u8 unk4;
u8 unk5;
unkStruct(u8 p1, u16 p2, u8 p3)
: unk0(p1), unk2(p2), unk4(p3) { }
};
#endif //POKEREVO_CODE_UNKSTRUCT_H
|