chrisdill / raylib-cs

C# bindings for raylib, a simple and easy-to-use library to learn videogames programming

Home Page:http://www.raylib.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Option to remove Console Debug window

pinkfloydhomer opened this issue · comments

It would be nice to able to run just the game window without the console window.

just dont use a console application then...

This is a Windows limitation

add this to your code and run it:

[System.Runtime.InteropServices.DllImport("kernel32.dll", SetLastError = true, ExactSpelling = true)]
private static extern bool FreeConsole();