Update define.cpp

Removing “obvious” comments
This commit is contained in:
CB-XCVS 2023-06-11 15:34:02 -07:00 committed by GitHub
parent 425bbeaf6d
commit ba286affe7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.