mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-03 08:39:05 +00:00
ddda8464f8
Next work on the Script Creator maybe tomorrow or so.
17 lines
413 B
C++
17 lines
413 B
C++
#ifndef KEYBOARD_HPP
|
|
#define KEYBOARD_HPP
|
|
|
|
#include <string>
|
|
|
|
namespace Input {
|
|
void DrawNumpad();
|
|
void drawKeyboard();
|
|
std::string Numpad(std::string Text);
|
|
std::string Numpad(uint maxLength, std::string Text);
|
|
// -1 if invaild text entered
|
|
int getUint(int max, std::string Text);
|
|
std::string getString(std::string Text);
|
|
std::string getString(uint maxLength, std::string Text);
|
|
}
|
|
|
|
#endif |