2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-09-09 03:01:41 -04:00

Remove ref from raylib bindings

This commit is contained in:
2021-12-16 20:13:50 +00:00
parent c859981d0b
commit ed9cead672
2 changed files with 54 additions and 54 deletions

View File

@@ -101,7 +101,7 @@ namespace Raylib_cs
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern void rlMultMatrixf(float* matf);
/// <inheritdoc cref="rlMultMatrixf"/>
/// <inheritdoc cref="rlMultMatrixf(float*)"/>
public static void rlMultMatrixf(Matrix4x4 matf)
{
float16 f = Raymath.MatrixToFloatV(matf);