From 072c4699df1278112519de1074007f43f26c299d Mon Sep 17 00:00:00 2001 From: Ben Parsons <9parsonsb@gmail.com> Date: Sun, 5 Dec 2021 00:28:54 +1100 Subject: [PATCH] Remove Debug code --- Raylib-cs.Tests/RaylibTests.cs | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/Raylib-cs.Tests/RaylibTests.cs b/Raylib-cs.Tests/RaylibTests.cs index fa87ab3..327ae81 100644 --- a/Raylib-cs.Tests/RaylibTests.cs +++ b/Raylib-cs.Tests/RaylibTests.cs @@ -40,26 +40,5 @@ namespace Raylib_cs.Tests Assert.True(BlittableHelper.IsBlittable()); Assert.True(BlittableHelper.IsBlittable()); } - - [Fact] - public void Debug() - { - // Initialization - //-------------------------------------------------------------------------------------- - const int screenWidth = 800; - const int screenHeight = 450; - - Raylib.InitWindow(screenWidth, screenHeight, "Aaåäö"); - - while (!Raylib.WindowShouldClose()) - { - Raylib.BeginDrawing(); - Raylib.ClearBackground(Color.RAYWHITE); - Raylib.EndDrawing(); - } - - Raylib.CloseWindow(); - - } } }