Love2dCS
Love2dCS copied to clipboard
Is there a way to launch the Love2dCs library without the console ?
In fact, Love2dCs uses the console to output some debug. But can we make so that those debug messages go into the visual studio debugging window, and a way to not show the console on screen ?
https://stackoverflow.com/a/11077141
Right click your project in the solution explorer and select properties. Then, under the "Application" tab change the "Output type" of your project from “Console Application” to “Windows Application.”
and then you will get an no console window, and it output will print to debugging window

Thanks a lot for your help ! I would suggest putting this to the documentation too.