Remove storage value functions
This commit is contained in:
parent
045a04b1e9
commit
f7d017b3f0
1 changed files with 0 additions and 16 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue