Watch
2
0
Fork
You've already forked raylib-cs
0
raylib-cs/ExampleApplication/Program.cs
ChrisDill 2995318a4e Project tidying
- Project now uses AnyCPU.
- Fixed assembly info and renamed Raylib-cs project to Generator.
- Removed resources folder and dlls.
- Improving current manual bindings.
2018-08-04 21:04:02 +01:00

14 lines
No EOL
252 B
C#

using Raylib;
using static Raylib.rl;
namespace ExampleApplication
{
static class Program
{
static void Main(string[] args)
{
Examples.core_basic_window();
// DrawControl.Run();
}
}
}