diff GUI/UI/UISaveLoad.h @ 2547:fed97f15d1e1

* SaveLoad * QuickReference * Modal * Character
author a.parshin
date Tue, 12 May 2015 01:45:31 +0200
parents 0ff6a9e9bf7f
children 0c67be4ec900
line wrap: on
line diff
--- a/GUI/UI/UISaveLoad.h	Mon May 11 17:45:02 2015 +0200
+++ b/GUI/UI/UISaveLoad.h	Tue May 12 01:45:31 2015 +0200
@@ -1,1 +1,18 @@
-#pragma once
\ No newline at end of file
+#pragma once
+#include "GUI/GUIWindow.h"
+
+struct GUIWindow_Save : public GUIWindow
+{
+             GUIWindow_Save();
+    virtual ~GUIWindow_Save() {}
+
+    virtual void Update();
+};
+
+struct GUIWindow_Load : public GUIWindow
+{
+             GUIWindow_Load(bool ingame);
+    virtual ~GUIWindow_Load() {}
+
+    virtual void Update();
+};
\ No newline at end of file