nx-hbmenu/nx_main/nx_touch.h
Steven Mattera 00e96fd53b Added touch controls. (#41)
* Added touch controls.
2018-07-30 17:23:34 -04:00

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);