Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using Raylib_cs;
- namespace RaylibIntro
- {
- class Program
- {
- static void Main(string[] args)
- {
- // Inicjalizacja okna
- Raylib.InitWindow(600, 400, "Raylib w C# - Pierwszy program");
- Raylib.SetTargetFPS(60);
- // Główna pętla programu
- while (!Raylib.WindowShouldClose())
- {
- // Start rysowania
- Raylib.BeginDrawing();
- // Wyczyść ekran
- Raylib.ClearBackground(Color.Black);
- // Rysuj tekst
- Raylib.DrawText("Witaj w Raylib z C#!", 150, 150, 20, Color.Green);
- // Zakończ rysowanie
- Raylib.EndDrawing();
- }
- // Zamknięcie okna
- Raylib.CloseWindow();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement