2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00
raylib-cs/Generator/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

16 lines
357 B
C#

using System;
using CppSharp;
namespace Raylibcs
{
static 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();
}
}
}