unifork.old/include/keyboard.hpp
VoltZ ddda8464f8 My work until I got extremly annoyed.
Next work on the Script Creator maybe tomorrow or so.
2019-11-16 01:39:20 +01:00

17 lines
No EOL
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