Attention (#35)

* attention

* Header

* These were meant to be public

* fixup merge

---------

Co-authored-by: elijah-thomas774 <elijahthomas774@gmail.com>
This commit is contained in:
robojumper
2024-09-28 02:01:18 +02:00
committed by GitHub
parent 3829ee6d48
commit d35fb6db76
12 changed files with 934 additions and 87 deletions
+8
View File
@@ -182,5 +182,13 @@ public:
/* 0x360 */ UNKWORD field_0x360;
/* 0x364 */ u32 mActionFlags;
inline bool checkFlags0x340(u32 mask) const {
return (someFlags_0x340 & mask) != 0;
}
inline bool checkFlags0x350(u32 mask) const {
return (someFlags_0x350 & mask) != 0;
}
static dAcPy_c *LINK;
};
+11
View File
@@ -0,0 +1,11 @@
#ifndef D_PAD_H
#define D_PAD_H
class dPad {
public:
static bool checkButtonZPressed();
static bool checkButtonZHeld();
};
#endif