From f7d017b3f0f77aac06c9affd95b0d5c0a5d13f49 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Thu, 11 Aug 2022 20:09:15 +0100 Subject: [PATCH] Remove storage value functions --- Raylib-cs/interop/Raylib.cs | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs index a4a3cc4..c882c8d 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -609,17 +609,6 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern byte* DecodeDataBase64(byte* data, int* outputLength); - - // Persistent storage management - - /// Save integer value to storage file (to defined position) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern CBool SaveStorageValue(uint position, int value); - - /// Load integer value from storage file (from defined position) - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int LoadStorageValue(uint position); - /// Open URL with default system browser (if available) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void OpenURL(sbyte* url); @@ -1797,11 +1786,6 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void GenMeshTangents(Mesh* mesh); - /// Compute mesh binormals - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void GenMeshBinormals(Mesh* mesh); - - // Material loading/unloading functions //TODO: safe Helper method