933d00ad
rlentieu
add JPaint
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* This is the main class which controls the splash screen loading and starts
* the program.
**/
public class Main
{
/** Main Class **/
public static void main(String [] args)
{
ControlClass control;
//Freeware fware = new Freeware();
String status = "open";
SplashScreen splash = new SplashScreen("Images\\JPaintSplash.jpg");
control = new ControlClass();
try{Thread.sleep(1000);}catch(InterruptedException ie){}
splash.closeWindow();
}
}
|