|
main |
|
/*
* A puzzle game written in Java.
*
* Please read "http://juzzle.sourceforge.net/juzzle_licence.txt" for copyrights.
*
* The sourcecode is designed and created with
* Sun J2SDK 1.3 and Microsoft Visual J++ 6.0
*
* Juzzle homepage: http://juzzle.sourceforge.net
*
* autor: Slawa Weis
* email: slawaweis@animatronik.net
*
*/
package org.game.Juzzle;
/**
* Main class for start as application.
*/
public class main
{
/**
* static main function. Calls on execution start.
*/
public static void main(String [] args)
{
// simply creates the MainFrame
new MainFrame();
}
}
|
main |
|