mirror of
https://github.com/echojc/osu-ds.git
synced 2025-06-18 17:05:36 -04:00
20 lines
307 B
C++
20 lines
307 B
C++
#include <nds.h>
|
|
|
|
#ifndef __INPUTHELPER_H__
|
|
#define __INPUTHELPER_H__
|
|
|
|
class InputHelper
|
|
{
|
|
public:
|
|
static bool KeyDown(int key);
|
|
static bool KeyHeld(int key);
|
|
static bool KeyUp(int key);
|
|
static touchPosition& TouchRead();
|
|
|
|
protected:
|
|
static touchPosition mTouch;
|
|
};
|
|
|
|
#endif
|
|
|