Watch
2
0
Fork
You've already forked raylib-cs
0

Remove storage value functions

This commit is contained in:
Rgebee 2022-08-11 20:09:15 +01:00
commit f7d017b3f0

View file

@ -609,17 +609,6 @@ namespace Raylib_cs
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern byte* DecodeDataBase64(byte* data, int* outputLength); public static extern byte* DecodeDataBase64(byte* data, int* outputLength);
// Persistent storage management
/// <summary>Save integer value to storage file (to defined position)</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern CBool SaveStorageValue(uint position, int value);
/// <summary>Load integer value from storage file (from defined position)</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern int LoadStorageValue(uint position);
/// <summary>Open URL with default system browser (if available)</summary> /// <summary>Open URL with default system browser (if available)</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void OpenURL(sbyte* url); public static extern void OpenURL(sbyte* url);
@ -1797,11 +1786,6 @@ namespace Raylib_cs
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void GenMeshTangents(Mesh* mesh); public static extern void GenMeshTangents(Mesh* mesh);
/// <summary>Compute mesh binormals</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void GenMeshBinormals(Mesh* mesh);
// Material loading/unloading functions // Material loading/unloading functions
//TODO: safe Helper method //TODO: safe Helper method