Files
DarkStore/include/keyboard.hpp
T
2019-11-02 04:32:23 +01:00

14 lines
288 B
C++

#ifndef KEYBOARD_HPP
#define KEYBOARD_HPP
#include <string>
namespace Input {
void DrawNumpad();
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);
}
#endif