Add Settings Stuff. :P

This commit is contained in:
VoltZ 2019-11-02 04:32:23 +01:00 committed by GitHub
commit 7ee50d5418
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 907 additions and 39 deletions

14
include/keyboard.hpp Normal file
View 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