From a9e25ce7ed4e0ad2f53b520445eed63d476c1257 Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 17 Oct 2020 20:10:05 -0400 Subject: add note to ctors_2, and organize function/class declarations into headers --- include/unkStruct.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 include/unkStruct.h (limited to 'include/unkStruct.h') diff --git a/include/unkStruct.h b/include/unkStruct.h new file mode 100644 index 0000000..aface6c --- /dev/null +++ b/include/unkStruct.h @@ -0,0 +1,17 @@ +#ifndef POKEREVO_CODE_UNKSTRUCT_H +#define POKEREVO_CODE_UNKSTRUCT_H + +class 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) { } +}; + +#endif //POKEREVO_CODE_UNKSTRUCT_H -- cgit v1.2.3