mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-06-30 19:03:42 -04:00
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.
This commit is contained in:
16
Generator/Program.cs
Normal file
16
Generator/Program.cs
Normal file
@ -0,0 +1,16 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user