Remove unused icon from tests
This commit is contained in:
parent
d067c6c0aa
commit
3f9cf16c93
2 changed files with 2 additions and 3 deletions
|
|
@ -1,7 +1,6 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ApplicationIcon>../Logo/raylib-cs.ico</ApplicationIcon>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
|
||||
|
|
|
|||
|
|
@ -38,14 +38,14 @@ namespace Raylib_cs
|
|||
using var str1 = text.ToUTF8Buffer();
|
||||
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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue