mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
- Added DrawControl class to test windows forms with raylib. Need a way to get the window handle?
15 lines
279 B
C#
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();
|
|
}
|
|
}
|
|
} |