Files
st/include/input.hpp
T
Yanis 4daa8d8e86 Decompile overlay 1 (Part 6) (#105)
* UnkStruct_027e0ce0_30_001 OK

* UnkStruct_027e0ce0_40_Base_001 OK

* item manager files stuff

* ItemManager_001 OK

* other file things

* forgot to delete a file

* UnkStruct_027e0ce0_001 53%

* UnkStruct_027e0ce0_001 OK
2026-07-06 17:15:04 +02:00

24 lines
392 B
C++

#pragma once
#include "types.h"
#include <nitro/pad.h>
#define CHECK_BUTTON_COMBO(value, btn) ((value) & (btn))
struct Input {
/* 00 */ u16 cur;
/* 02 */ volatile u16 press;
/* 04 */ u16 release;
/* 06 */
Input() {
this->Init();
}
void Init();
unk32 func_02013c08(u16 param1);
unk32 func_02013b24(unk32 param1);
unk32 func_02013bbc();
};