1 // Copyright © 2018 650 Industries. All rights reserved.
2 
3 #import <UIKit/UIKit.h>
4 #import <Foundation/Foundation.h>
5 
6 NS_ASSUME_NONNULL_BEGIN
7 
8 @protocol EXSplashScreenViewProvider
9 
10 - (UIView *)createSplashScreenView;
11 
12 @end
13 
14 NS_ASSUME_NONNULL_END
15