Maelstrom: Added a way to query the panel transition type

https://github.com/libsdl-org/Maelstrom/commit/fed8582cf2e39fec6ef28db5f14985e19699dee6

From fed8582cf2e39fec6ef28db5f14985e19699dee6 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Thu, 1 Nov 2012 21:33:54 -0700
Subject: [PATCH] Added a way to query the panel transition type

---
 screenlib/UIManager.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/screenlib/UIManager.h b/screenlib/UIManager.h
index d2d8b760..891ce86e 100644
--- a/screenlib/UIManager.h
+++ b/screenlib/UIManager.h
@@ -103,6 +103,9 @@ class UIManager : public UIArea, public UIFontInterface, public UIImageInterface
 	void SetPanelTransition(PANEL_TRANSITION_TYPE transition) {
 		m_panelTransition = transition;
 	}
+	PANEL_TRANSITION_TYPE GetPanelTransition() const {
+		return m_panelTransition;
+	}
 
 	void HideDialogs();