mirror of
https://github.com/zeldaret/ph
synced 2026-05-23 15:01:37 -04:00
38e9378f8f
* Make types compatible with dsd-ghidra typesync * Update actors.md * Update docs * Delink ActorShopItem.cpp
27 lines
414 B
C
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
|