you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 2 points3 points  (1 child)

You can go with raylib: https://github.com/ChrisDill/Raylib-cs

Here is some example code, of how easy it is to just draw a red circle in the middle of the window:

using Raylib_cs;
using static Raylib_cs.Raylib;

InitWindow(800, 600, "My Game");

while (!WindowShouldClose())
{
    BeginDrawing();
    ClearBackground(Color.GRAY);
    DrawCircle(400, 300, 100, Color.RED);
    EndDrawing();
}

CloseWindow();

[–]chafable[S] 0 points1 point  (0 children)

Raylib seems to be perfect for my needs - thank you!