mirror of
https://github.com/pret/pokeheartgold.git
synced 2024-11-27 15:10:26 +00:00
14 lines
534 B
C
14 lines
534 B
C
#ifndef POKEHEARTGOLD_UNK_02026C44_H
|
|
#define POKEHEARTGOLD_UNK_02026C44_H
|
|
|
|
#include "heap.h"
|
|
#include "touchscreen.h"
|
|
|
|
typedef struct TouchHitboxController TouchHitboxController;
|
|
|
|
TouchHitboxController *TouchHitboxController_Create(const TouchscreenHitbox *hitboxes, u32 num_templates, void (*callback)(u32, u32, void *), void *arg, HeapID heapId);
|
|
BOOL TouchHitboxController_IsTriggered(TouchHitboxController *controller);
|
|
void TouchHitboxController_Destroy(TouchHitboxController *controller);
|
|
|
|
#endif //POKEHEARTGOLD_UNK_02026C44_H
|