2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-09-09 03:01:41 -04:00

Fixing more examples

- Changed a few parts to use IntPtr for now.
This commit is contained in:
2018-10-25 18:20:13 +01:00
parent ce89a3bc8d
commit c617dff002
6 changed files with 22 additions and 25 deletions

View File

@@ -27,7 +27,7 @@ public partial class text_input_box
InitWindow(screenWidth, screenHeight, "raylib [text] example - input box");
StringBuilder name = new StringBuilder(' ', MAX_INPUT_CHARS + 1); // NOTE: One extra space required for line ending char '\0'
StringBuilder name = new StringBuilder(" ", MAX_INPUT_CHARS + 1); // NOTE: One extra space required for line ending char '\0'
int letterCount = 0;
Rectangle textBox = new Rectangle( screenWidth/2 - 100, 180, 225, 50 );