main
 1namespace momoney.presentation.views
 2{
 3    public interface ISplashScreenView
 4    {
 5        void increment_the_opacity();
 6        double current_opacity();
 7        void decrement_the_opacity();
 8        void close_the_screen();
 9        void display();
10    }
11}