mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
- Renamed Raylib-example to ExampleApplication. - Example removed from Raylib-cs. It now only contains the generator. Use the current bindings in ExampleApplication/Raylib-cs.
16 lines
350 B
C#
16 lines
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();
|
|
}
|
|
}
|
|
} |