Add TouchControl.s

This commit is contained in:
Aetias
2024-03-19 17:53:59 +01:00
parent f9f944ae47
commit 6f707bb31d
24 changed files with 95122 additions and 92622 deletions
+17
View File
@@ -0,0 +1,17 @@
#pragma once
struct TouchStateFlags {
u16 touchX;
u16 touchY;
u16 touch;
u16 flags;
};
struct TouchState {
bool touch;
s32 touchX;
s32 touchY;
};
void WaitForTouchUpdate(u16 param1);
bool GetTouchStateFlags(TouchStateFlags *pState);