mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Adding a string method for OpenURL
and SetGamepadMappings
(#180)
This commit is contained in:
parent
7e0866c222
commit
083a776aee
@ -39,6 +39,20 @@ namespace Raylib_cs
|
||||
SetClipboardText(str1.AsPointer());
|
||||
}
|
||||
|
||||
/// <summary>Open URL with default system browser (if available)</summary>
|
||||
public static void OpenURL(string url)
|
||||
{
|
||||
using var str1 = url.ToUTF8Buffer();
|
||||
OpenURL(str1.AsPointer());
|
||||
}
|
||||
|
||||
/// <summary>Set internal gamepad mappings (SDL_GameControllerDB)</summary>
|
||||
public static int SetGamepadMappings(string mappings)
|
||||
{
|
||||
using var str1 = mappings.ToUTF8Buffer();
|
||||
return SetGamepadMappings(str1.AsPointer());
|
||||
}
|
||||
|
||||
/// <summary>Load shader from files and bind default locations</summary>
|
||||
public static Shader LoadShader(string vsFileName, string fsFileName)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user