Files

21 lines
304 B
C
Raw Permalink Normal View History

2024-03-19 17:53:59 +01:00
#pragma once
2024-03-20 19:48:26 +01:00
#include "global.h"
#include "types.h"
2024-03-19 17:53:59 +01:00
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);