Package main

Source Code of main.Core

package main;

import anim.Anim;

public class Core {
 
  public static Fenetre fen;
  public static Anim anim;
 
  public static void main ( String[] args ) {
   
    fen = new Fenetre();
    anim = new Anim();
   
    fen.add(anim);
   
    fen.affiche();   
  }


}
TOP

Related Classes of main.Core

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.