/* ========================================================================== * ÆÄ ÀÏ : IntroUIManager.h * ¸ñ Àû : ÀÎÆ®·Î ½ºÅ×ÀÌÁö UI °ü¸®ÀÚ * ÀÛ ¼º ÀÚ : ±è°¡¶÷ * ÀÛ ¼º ÀÏ : 2006-12-21 * ÁÖÀÇ»çÇ× : *===========================================================================*/ #pragma once class cIntroWindow; class cIntroUIManager { public: cIntroUIManager(); ~cIntroUIManager(); void Init(); void InitStage(); void Exit(); void Open(); void Close(); cIntroWindow* GetBackWindow() { return mpBackWindow; } protected: /// ¹è°æ À©µµ¿ì cIntroWindow* mpBackWindow; };