Added Raymath binding + Initial examples
- Added Raymath.cs binding. Raylib.cs depends on this since they both share some types. - Bindings moved into source directly. - Inital examples port alot of syntax still needs to be fixed. - Couldn't get cppsharp to work correctly so using a custom generator(WIP).
This commit is contained in:
parent
b3838e3d8a
commit
6b6b345551
154 changed files with 3164 additions and 9259 deletions
|
|
@ -1,16 +1,16 @@
|
|||
using System;
|
||||
using CppSharp;
|
||||
|
||||
namespace Raylibcs
|
||||
{
|
||||
static class Program
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("Raylib-cs binding generator");
|
||||
ConsoleDriver.Run(new SampleLibrary());
|
||||
Console.WriteLine("Raylib-cs generator");
|
||||
// Generator.Process("raylib.h", "RLAPI");
|
||||
Generator.ProcessExamples();
|
||||
Console.WriteLine("Press enter to exit");
|
||||
Console.ReadLine();
|
||||
Console.Read();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue