From b0cab0d2579a510c6aae396b06d3a94665ab5939 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sun, 4 Jun 2023 18:00:18 +0100 Subject: [PATCH] Remove Text util methods --- Raylib-cs/types/Raylib.Utils.cs | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/Raylib-cs/types/Raylib.Utils.cs b/Raylib-cs/types/Raylib.Utils.cs index 8c5647a..edcf5c7 100644 --- a/Raylib-cs/types/Raylib.Utils.cs +++ b/Raylib-cs/types/Raylib.Utils.cs @@ -869,28 +869,6 @@ namespace Raylib_cs return MeasureTextEx(font, str1.AsPointer(), fontSize, spacing); } - /// Append text at specific position and move cursor! - public static void TextAppend(string text, string append, int position) - { - using var str1 = text.ToUTF8Buffer(); - using var str2 = append.ToUTF8Buffer(); - TextAppend(str1.AsPointer(), str2.AsPointer(), &position); - } - - /// Get Pascal case notation version of provided string - public static string TextToPascal(string text) - { - using var str1 = text.ToUTF8Buffer(); - return Utf8StringUtils.GetUTF8String(TextToPascal(str1.AsPointer())); - } - - /// Get integer value from text (negative values not supported) - public static int TextToInteger(string text) - { - using var str1 = text.ToUTF8Buffer(); - return TextToInteger(str1.AsPointer()); - } - /// Get all codepoints in a string, codepoints count returned by parameters public static int[] LoadCodepoints(string text, ref int count) {