From 6670b358c004960f53190386186eb708551cacfa Mon Sep 17 00:00:00 2001 From: Colin McMillen Date: Fri, 7 Jul 2023 02:33:01 -0400 Subject: [PATCH] add black border on the drawn box --- Program.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index c8a2886..fd63468 100644 --- a/Program.cs +++ b/Program.cs @@ -311,7 +311,8 @@ public class Game : GameWindow { Box2i box = makeBox(windowWidth - thumbnailWidth, i * thumbnailHeight, thumbnailWidth, thumbnailHeight); DrawTexture(textures[i], box); if (i == textureIndex) { - DrawBox(box, 3, Color4.GreenYellow); + DrawBox(box, 5, Color4.Black); + DrawBox(box, 3, Color4.White); } }