Advertisement
ada1711

Untitled

Jun 8th, 2024
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. using Raylib_cs;
  2.  
  3. namespace RaylibIntro
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. // Inicjalizacja okna
  10. Raylib.InitWindow(600, 400, "Raylib w C# - Pierwszy program");
  11. Raylib.SetTargetFPS(60);
  12.  
  13. // Główna pętla programu
  14. while (!Raylib.WindowShouldClose())
  15. {
  16. // Start rysowania
  17. Raylib.BeginDrawing();
  18.  
  19. // Wyczyść ekran
  20. Raylib.ClearBackground(Color.Black);
  21.  
  22. // Rysuj tekst
  23. Raylib.DrawText("Witaj w Raylib z C#!", 150, 150, 20, Color.Green);
  24.  
  25. // Zakończ rysowanie
  26. Raylib.EndDrawing();
  27. }
  28.  
  29. // Zamknięcie okna
  30. Raylib.CloseWindow();
  31. }
  32. }
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement