mirror of
https://github.com/echojc/osu-ds.git
synced 2025-06-19 01:15:44 -04:00

Removed the arm7 section Changed the makefile to only use the arm9 stuff Epicpkmn: Fix source/Graphics/GraphicsManager.cpp Co-Authored-By: Pk11 <epicpkmn11@outlook.com> Co-Authored-By: Kaisaan <34224128+Kaisaan@users.noreply.github.com>
20 lines
288 B
C++
20 lines
288 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
|
|
|