From 799c4987f9ebd180bd30f1838e946d57ce1accc3 Mon Sep 17 00:00:00 2001 From: MrScautHD Date: Sun, 19 Nov 2023 13:35:24 +0100 Subject: [PATCH] Removed UnloadRandomSequence --- Raylib-cs/types/Raylib.Utils.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Raylib-cs/types/Raylib.Utils.cs b/Raylib-cs/types/Raylib.Utils.cs index c3d6978..1bcb244 100644 --- a/Raylib-cs/types/Raylib.Utils.cs +++ b/Raylib-cs/types/Raylib.Utils.cs @@ -83,15 +83,6 @@ public static unsafe partial class Raylib return GetShaderLocationAttrib(shader, str1.AsPointer()); } - /// Unload random values sequence - public static void UnloadRandomSequence(out int sequence) - { - fixed (int* p = &sequence) - { - UnloadRandomSequence(p); - } - } - /// Takes a screenshot of current screen (saved a .png) public static void TakeScreenshot(string fileName) {