mirror of
https://github.com/zeldaret/st
synced 2026-07-07 05:55:05 -04:00
4daa8d8e86
* 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
24 lines
392 B
C++
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();
|
|
};
|