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

Fix missing argument in GetMonitorPosition

This commit is contained in:
ChrisDill 2021-09-24 21:55:32 +01:00
parent e50b30e870
commit 4ebb829423

View File

@ -1002,7 +1002,7 @@ namespace Raylib_cs
/// <summary>Get specified monitor position</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Vector2 GetMonitorPosition();
public static extern Vector2 GetMonitorPosition(int monitor);
/// <summary>Get primary monitor width</summary>
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]