IsSoundReady renamed
This commit is contained in:
parent
821dea177e
commit
8ea7a93c79
1 changed files with 2 additions and 2 deletions
|
|
@ -2714,9 +2714,9 @@ public static unsafe partial class Raylib
|
|||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern Sound LoadSoundAlias(Sound source);
|
||||
|
||||
/// <summary>Checks if a sound is ready</summary>
|
||||
/// <summary>Checks if a sound is valid (data loaded and buffers initialized)</summary>
|
||||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern CBool IsSoundReady(Sound sound);
|
||||
public static extern CBool IsSoundValid(Sound sound);
|
||||
|
||||
/// <summary>Update sound buffer with new data</summary>
|
||||
[DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue