| 1234567891011121314151617181920212223242526272829303132333435 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsEditorPrerequisites.h"
- namespace bs
- {
- /** @addtogroup Utility-Editor
- * @{
- */
- /** Displays a splash screen with Banshee Engine logo. */
- class BS_ED_EXPORT SplashScreen
- {
- public:
- /** Displays a splash screen with Banshee Engine logo. */
- static void show();
- /** Hides the splash screen. */
- static void hide();
- private:
- /** Creates the splash screen window. */
- static void create();
- /** Destroys the splash screen window. */
- static void destroy();
- struct Pimpl;
- static Pimpl* m;
- };
- /** @} */
- }
|