mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
- Project now uses AnyCPU. - Fixed assembly info and renamed Raylib-cs project to Generator. - Removed resources folder and dlls. - Improving current manual bindings.
14 lines
252 B
C#
14 lines
252 B
C#
using Raylib;
|
|
using static Raylib.rl;
|
|
|
|
namespace ExampleApplication
|
|
{
|
|
static class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Examples.core_basic_window();
|
|
// DrawControl.Run();
|
|
}
|
|
}
|
|
} |