/*
 * JVirus is a PacMan clone, written in Java.
 *
 * Please read "http://jvirus.sourceforge.net/jvirus_licence.txt" for copyrights.
 * 
 * The sourcecode is designed and created with
 * Sun J2SDK 1.3 and Microsoft Visual J++ 6.0
 *
 * JVirus homepage: http://jvirus.sourceforge.net
 *
 * autor: Slawa Weis
 * email: slawaweis@animatronik.net
 *
 */

package org.game.JVirus;

import java.io.*;

/**
 * main class with main(String[] args) function. set the Swing theme and creates the main frame, nothing other.
 */
public class main
{
 /**
  * static main function. Calls on execution start.
  */
 public static void main(String[] args)
  {
  SwingTheme.initSwing();
  new JVirusFrame();
  }
}