Last active
October 23, 2019 16:21
-
-
Save MisterModzZ/f9df772bc296d9c50ad5e77870cdcc57 to your computer and use it in GitHub Desktop.
Float Keyboard By Mister//ModzZ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| float sucuck() | |
| { | |
| GAMEPLAY::DISPLAY_ONSCREEN_KEYBOARD(1, "", "", "", "", "", "", 60); | |
| while (GAMEPLAY::UPDATE_ONSCREEN_KEYBOARD() == 0) WAIT(0); | |
| if (!GAMEPLAY::GET_ONSCREEN_KEYBOARD_RESULT())return 0; | |
| std::string fs = GAMEPLAY::GET_ONSCREEN_KEYBOARD_RESULT(); | |
| float fr = std::stof(fs); | |
| return fr; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment