Raylib-CSharp*
Separata bibliotek
using System.Numerics;
using Raylib_CSharp.Colors;
using Raylib_CSharp.Rendering;
using Raylib_CSharp.Windowing;
Window.Init(800, 600, "Hello");
Vector2 position = new (400, 300);
while (!Window.ShouldClose())
{
Graphics.BeginDrawing();
Graphics.ClearBackground(Color.Green);
Graphics.DrawCircleV(position, 40, Color.Black);
Graphics.EndDrawing();
}Funktioner
Raylib-cs
Raylib-CSharp
Bibliotek
Datatyper
Struct
Bibliotek
Last updated