Files
BUT3ProjetJeuGroupe/fr/iut_fbleau/Avalam/Main.java

29 lines
502 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package fr.iut_fbleau.Avalam;
/**
* La classe <code>Main</code>
*
* Point dentrée du programme.
* Lance linterface graphique principale (<code>AvalamWindow</code>).
*/
public class Main {
//Attributs
//Constructeur
public Main() {
}
//Méthodes
/**
* Méthode principale : démarre lapplication.
*
* @param args arguments de la ligne de commande (non utilisés)
*/
public static void main(String[] args) {
new AvalamWindow();
}
}