mirror of
https://github.com/zeldaret/ph
synced 2026-09-03 01:54:10 -04:00
Add TouchControl.s
This commit is contained in:
@@ -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);
|
||||
Reference in New Issue
Block a user