2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-09-09 03:01:41 -04:00
Files
raylib-cs/ExampleApplication/Program.cs
ChrisDill 5ee08dc6dd Setup basic class to test with windows forms
- Added DrawControl class to test windows forms with raylib. Need a way to get the window handle?
2018-08-01 17:17:53 +01:00

15 lines
279 B
C#

using Raylib;
using static Raylib.rl;
namespace ExampleApplication
{
class Program
{
static void Main(string[] args)
{
// LoadApp();
Examples.shapes_basic_shapes();
// DrawControl.Run();
}
}
}