15 lines
269 B
C
15 lines
269 B
C
#pragma once
|
|
|
|
#include <switch.h>
|
|
#include "../common/common.h"
|
|
|
|
struct touchInfo_s {
|
|
bool gestureInProgress;
|
|
touchPosition firstTouch;
|
|
touchPosition prevTouch;
|
|
bool isTap;
|
|
int initMenuXPos;
|
|
int initMenuIndex;
|
|
};
|
|
|
|
void handleTouch(menu_s* menu); |