Creates a new instance of SplashScreen
()
| 69 | |
| 70 | /** Creates a new instance of SplashScreen */ |
| 71 | private SplashScreen() { |
| 72 | super(null, false); |
| 73 | infobar = null; |
| 74 | mainbar = null; |
| 75 | try { |
| 76 | splashimg = BombusMod.splash; |
| 77 | if (splashimg == null) { |
| 78 | splashimg = Image.createImage("/images/splash.png"); |
| 79 | } |
| 80 | } catch (Exception e) { |
| 81 | } |
| 82 | |
| 83 | show(); |
| 84 | } |
| 85 | |
| 86 | public SplashScreen(ComplexString status, int exitKey) { |
| 87 | super(null, false); |
nothing calls this directly
no test coverage detected