| 12345678910111213141516171819202122232425262728293031323334353637 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsPrerequisites.h"
- namespace bs
- {
- /** @addtogroup Platform-Engine
- * @{
- */
- /** Displays a splash screen with Banshee Engine logo. */
- class BS_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;
- static const UINT32 SPLASH_SCREEN_DURATION_MS;
- };
- /** @} */
- }
|