added Application.java (main entry point)

This commit is contained in:
Kjistóf 2016-05-13 16:54:15 +02:00
parent a0f47a6e05
commit 3b5ef952bc
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package cicaprojekt;
public class Application
{
public static void main(String[] args)
{
ApplicationFrame af = new ApplicationFrame();
af.init();
af.run();
}
}