Repository URL to install this package:
package com.vipera.splashscreen;
/**
* Created by enrico on 23/02/17.
*/
public interface DESplashScreen {
/**
* Show your splashScreen
*/
void show();
/**
* Hide your splashScreen
*/
void hide();
/**
* destroy your splashScreen
*/
void destroy();
}