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

Initial update to 4.2

This commit is contained in:
Rgebee 2022-07-04 07:28:32 +01:00
commit 1a78bc3c53
8 changed files with 153 additions and 39 deletions

View file

@ -67,7 +67,7 @@ namespace Raylib_cs
{
return new CBool { value = (sbyte)(left.value - right.value) };
}
// ToString override
public override string ToString()
{

View file

@ -0,0 +1,27 @@
using System;
using System.Runtime.InteropServices;
namespace Raylib_cs
{
/// <summary>
/// File path list
/// </summary>
[StructLayout(LayoutKind.Sequential)]
public unsafe struct FilePathList
{
/// <summary>
/// Filepaths max entries
/// </summary>
public uint capacity;
/// <summary>
/// Filepaths entries count
/// </summary>
public uint count;
/// <summary>
/// Filepaths entries
/// </summary>
public byte** paths;
}
}