osu-ds/arm9/source/Helpers/InputHelper.h
2014-05-23 17:07:09 +09:00

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