Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using Raylib_cs;
- namespace ConsoleApp
- {
- class Program
- {
- static void Main(string[] args)
- {
- Raylib.InitWindow(800, 600, "TEST");
- while (!Raylib.WindowShouldClose())
- {
- Raylib.BeginDrawing();
- //Raylib.ClearBackground(Color.RAYWHITE);
- Raylib.DrawText("Hello C# Window", 10, 10, 20, Color.RED);
- Raylib.EndDrawing();
- }
- Raylib.CloseWindow();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment