From ba286affe7200e97eeb350e3c9961e54e749d403 Mon Sep 17 00:00:00 2001 From: CB-XCVS <103461412+CB-XCVS@users.noreply.github.com> Date: Sun, 11 Jun 2023 15:34:02 -0700 Subject: [PATCH] Update define.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removing “obvious” comments --- ISLE/define.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ISLE/define.cpp b/ISLE/define.cpp index 49352b8b..be55a80a 100644 --- a/ISLE/define.cpp +++ b/ISLE/define.cpp @@ -1,9 +1,9 @@ #include "define.h" -Isle *g_isle = 0; // A variable of the Isle class. +Isle *g_isle = 0; int g_closed = 0; // Set to 1 when the window is closed. -const char *WINDOW_TITLE = "LEGO®"; // The title of the window. +const char *WINDOW_TITLE = "LEGO®"; unsigned char g_mousedown = 0; // 0 if the left mouse button is released, 1 if it is being pressed. unsigned char g_mousemoved = 0; // 0 if the mouse is not moving, 1 if it is moving.