diff --git a/glob2.vcxproj b/glob2.vcxproj
index 44286e05..f8911fa3 100644
--- a/glob2.vcxproj
+++ b/glob2.vcxproj
@@ -262,6 +262,7 @@
+
ZLIB_WINAPI;%(PreprocessorDefinitions)
ZLIB_WINAPI;%(PreprocessorDefinitions)
@@ -507,6 +508,7 @@
+
@@ -622,4 +624,4 @@
-
+
\ No newline at end of file
diff --git a/libgag/include/CursorManager.h b/libgag/include/CursorManager.h
index 25f1cf4d..e0bd1827 100644
--- a/libgag/include/CursorManager.h
+++ b/libgag/include/CursorManager.h
@@ -67,6 +67,7 @@ namespace GAGCore
CursorManager();
//! Load the cursor sprites
void load(void);
+ void reinitTextures(void);
//! Select the next type given the mouse position
void nextTypeFromMouse(DrawableSurface *ds, int x, int y, bool button);
//! Manually set the next type
diff --git a/libgag/include/EventListener.h b/libgag/include/EventListener.h
new file mode 100644
index 00000000..c08cadb9
--- /dev/null
+++ b/libgag/include/EventListener.h
@@ -0,0 +1,67 @@
+/*
+ Copyright (C) 2022 Nathan Mills
+ for any question or comment contact us at
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*/
+#ifndef __EVENTLISTENER_H
+#define __EVENTLISTENER_H
+#include "GraphicContext.h"
+#include
+#include
+#include
+#include
+#include
+#include
+#include