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

Revert partial struct change

This commit is contained in:
Rgebee 2022-02-10 08:11:33 +00:00
commit a01b1be228
15 changed files with 32 additions and 32 deletions

View file

@ -7,7 +7,7 @@ namespace Raylib_cs
/// Wave type, defines audio wave data
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public unsafe partial struct Wave
public unsafe struct Wave
{
/// <summary>
/// Number of samples
@ -41,7 +41,7 @@ namespace Raylib_cs
/// NOTE: Useful to create custom audio streams not bound to a specific file
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public partial struct AudioStream
public struct AudioStream
{
//TODO: convert
/// <summary>
@ -69,7 +69,7 @@ namespace Raylib_cs
/// Sound source type
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public partial struct Sound
public struct Sound
{
/// <summary>
/// Audio stream
@ -87,7 +87,7 @@ namespace Raylib_cs
/// NOTE: Anything longer than ~10 seconds should be streamed
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public unsafe partial struct Music
public unsafe struct Music
{
/// <summary>
/// Audio stream