mirror of
https://github.com/encounter/ph.git
synced 2026-03-30 11:34:37 -07:00
21 lines
304 B
C
21 lines
304 B
C
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
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);
|