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

4.2.0-rc.2

This commit is contained in:
Rgebee 2022-09-26 07:10:47 +01:00
commit 82550f66fe
3 changed files with 26 additions and 26 deletions

View file

@ -258,11 +258,11 @@ namespace Raylib_cs
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Reflect(Vector3 v, Vector3 normal);
/// <summary>Return min value for each pair of components</summary>
/// <summary>Get min value for each pair of components</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Min(Vector3 v1, Vector3 v2);
/// <summary>Return max value for each pair of components</summary>
/// <summary>Get max value for each pair of components</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector3 Vector3Max(Vector3 v1, Vector3 v2);