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:
parent
7008c67dfa
commit
e2a32241de
16 changed files with 240 additions and 146 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue