BsSplashScreen.h 805 B

1234567891011121314151617181920212223242526272829303132333435
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #pragma once
  4. #include "BsEditorPrerequisites.h"
  5. namespace bs
  6. {
  7. /** @addtogroup Utility-Editor
  8. * @{
  9. */
  10. /** Displays a splash screen with Banshee Engine logo. */
  11. class BS_ED_EXPORT SplashScreen
  12. {
  13. public:
  14. /** Displays a splash screen with Banshee Engine logo. */
  15. static void show();
  16. /** Hides the splash screen. */
  17. static void hide();
  18. private:
  19. /** Creates the splash screen window. */
  20. static void create();
  21. /** Destroys the splash screen window. */
  22. static void destroy();
  23. struct Pimpl;
  24. static Pimpl* m;
  25. };
  26. /** @} */
  27. }