Watch
2
0
Fork
You've already forked raylib-cs
0
raylib-cs/Raylib-cs/Program.cs
ChrisDill a796df379b Separated example from generator
- Renamed Raylib-example to ExampleApplication.
- Example removed from Raylib-cs. It now only contains the generator. Use the current bindings in ExampleApplication/Raylib-cs.
2018-07-31 13:33:19 +01:00

16 lines
No EOL
350 B
C#

using System;
using CppSharp;
namespace Raylibcs
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Raylib-cs binding generator");
ConsoleDriver.Run(new SampleLibrary());
Console.WriteLine("Press enter to exit");
Console.ReadLine();
}
}
}