mirror of
https://github.com/zeldaret/ph
synced 2026-06-13 22:05:24 -04:00
18 lines
264 B
C
18 lines
264 B
C
#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);
|