diff GUI/UI/UITransition.h @ 2545:e06a3fe9ad6e

TravelUI init logic moved to GUIWindow_Travel TransitionUI init logic moved to GUIWindow_Transition
author a.parshin
date Mon, 11 May 2015 16:43:46 +0200
parents 0ff6a9e9bf7f
children
line wrap: on
line diff
--- a/GUI/UI/UITransition.h	Mon May 11 09:51:04 2015 +0200
+++ b/GUI/UI/UITransition.h	Mon May 11 16:43:46 2015 +0200
@@ -1,1 +1,21 @@
-#pragma once
\ No newline at end of file
+#pragma once
+#include "GUI/GUIWindow.h"
+
+struct GUIWindow_Travel : public GUIWindow
+{
+    GUIWindow_Travel();
+    virtual ~GUIWindow_Travel() {}
+
+    virtual void Update();
+    virtual void Release();
+};
+
+
+struct GUIWindow_Transition : public GUIWindow
+{
+    GUIWindow_Transition(uint32_t anim_id, uint32_t exit_pic_id, int x, int y, int z, int directiony, int directionx, int a8, const char *pLocationName);
+    virtual ~GUIWindow_Transition() {}
+
+    virtual void Update();
+    virtual void Release();
+};
\ No newline at end of file