2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-07-10 19:50:28 -04:00
Files
raylib-cs/ExampleApplication/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

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();
}
}
}