Files
DarkStore/include/keyboard.hpp
T
VoltZ 67694a5f96 The progress which I did.
I continue later.
2019-11-11 19:43:00 +01:00

16 lines
356 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);
std::string getString(const std::string &hint, uint maxLength);
}
#endif