mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-06-19 03:05:43 -04:00
9 lines
168 B
C++
9 lines
168 B
C++
#ifndef KEYBOARD_H
|
|
#define KEYBOARD_H
|
|
|
|
#include <string>
|
|
|
|
std::string kbdGetString(std::string label, int maxSize = -1, std::string oldStr = "");
|
|
|
|
#endif // KEYBOARD_H
|