2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00
ChrisDill 53f77597da 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();
}
}
}