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

Tidying up project

- Added Release folder for important dlls that will be used in nuget package
- Moved Rayforms into Examples folder
- Added updated generator(WIP)
This commit is contained in:
2018-10-05 17:31:46 +01:00
parent bdf17a2101
commit e9eba6ced0
16 changed files with 240 additions and 146 deletions

View File

@@ -744,6 +744,30 @@ namespace Raylib
[DllImport(nativeLibName)]
public static extern int GetScreenHeight();
// Get number of connected monitors
[DllImport(nativeLibName)]
public static extern int GetMonitorCount();
// Get primary monitor width
[DllImport(nativeLibName)]
public static extern int GetMonitorWidth(int monitor);
// Get primary monitor height
[DllImport(nativeLibName)]
public static extern int GetMonitorHeight(int monitor);
// Get primary monitor physical width in millimetres
[DllImport(nativeLibName)]
public static extern int GetMonitorPhysicalWidth(int monitor);
// Get primary monitor physical height in millimetres
[DllImport(nativeLibName)]
public static extern int GetMonitorPhysicalHeight(int monitor);
// Get the human-readable, UTF-8 encoded name of the primary monitor
[DllImport(nativeLibName)]
public static extern string GetMonitorName(int monitor);
// Get current clipboard text
//[DllImport(nativeLibName)]
//public static extern string GetClipboard();