SplashScreen.h 305 B

123456789101112131415
  1. #pragma once
  2. #include "UnityViewControllerBase.h"
  3. @interface SplashScreen : UIImageView {}
  4. + (SplashScreen*)Instance;
  5. @end
  6. @interface SplashScreenController : UnityViewControllerBase {}
  7. + (SplashScreenController*)Instance;
  8. @end
  9. void ShowSplashScreen(UIWindow* window);
  10. void HideSplashScreen();