2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-12-14 20:33:38 +01: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 67d5628fe3
commit 26cd2c6337
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 );