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

IsSoundReady renamed

This commit is contained in:
JupiterRider 2024-12-06 20:59:30 +01:00
commit 8ea7a93c79

View file

@ -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)]