MCPcopy Create free account
hub / github.com/BombusMod/BombusMod / SplashScreen

Method SplashScreen

src/main/java/ui/SplashScreen.java:71–84  ·  view source on GitHub ↗

Creates a new instance of SplashScreen

()

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 3

createImageMethod · 0.95
setElementAtMethod · 0.80
showMethod · 0.45

Tested by

no test coverage detected