IsWaveReady renamed
This commit is contained in:
parent
9c24eb6539
commit
821dea177e
1 changed files with 2 additions and 2 deletions
|
|
@ -2698,9 +2698,9 @@ public static unsafe partial class Raylib
|
|||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern Wave LoadWaveFromMemory(sbyte* fileType, byte* fileData, int dataSize);
|
||||
|
||||
/// <summary>Checks if wave data is ready</summary>
|
||||
/// <summary>Checks if wave data is valid (data loaded and parameters)</summary>
|
||||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern CBool IsWaveReady(Wave wave);
|
||||
public static extern CBool IsWaveValid(Wave wave);
|
||||
|
||||
/// <summary>Load sound from file</summary>
|
||||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue