mirror of
https://github.com/pret/pokerevo.git
synced 2026-03-22 01:44:12 -05:00
18 lines
413 B
C
18 lines
413 B
C
#ifndef POKEREVO_CODE_CTORSTRUCT_H
|
|
#define POKEREVO_CODE_CTORSTRUCT_H
|
|
|
|
// Note: Many instances of this class appear in .sbss, and they are partially initialized
|
|
// by the static initializers in .ctors
|
|
|
|
struct ctorStruct
|
|
{
|
|
u8 unk0;
|
|
u16 unk2;
|
|
u8 unk4;
|
|
u8 unk5;
|
|
ctorStruct(u8 p1, u16 p2, u8 p3)
|
|
: unk0(p1), unk2(p2), unk4(p3) { }
|
|
};
|
|
|
|
#endif //POKEREVO_CODE_CTORSTRUCT_H
|