Add Settings Stuff. :P
This commit is contained in:
parent
44c31c46d5
commit
7ee50d5418
16 changed files with 907 additions and 39 deletions
14
include/keyboard.hpp
Normal file
14
include/keyboard.hpp
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue