Files
ph/include/lib/touch.h
T
Aetias 38e9378f8f Delink ActorShopItem.cpp (#147)
* Make types compatible with dsd-ghidra typesync

* Update actors.md

* Update docs

* Delink ActorShopItem.cpp
2026-04-16 23:10:14 +02:00

27 lines
414 B
C

#pragma once
#include "global.h"
#include "types.h"
typedef struct TouchStateFlags {
u16 touchX;
u16 touchY;
u16 touch;
u16 flags;
} TouchStateFlags;
typedef struct TouchState {
bool touch;
s32 touchX;
s32 touchY;
} TouchState;
#ifdef __cplusplus
extern "C" {
#endif
void WaitForTouchUpdate(u16 param1);
bool GetTouchStateFlags(TouchStateFlags *pState);
#ifdef __cplusplus
}
#endif