Package main.scenario

Examples of main.scenario.Scene


  Player p;
  Scene scene;
 
  @Override
  public void load() {
    scene = new Scene();
    p = new Player(10, 0, 50, 100){
      @Override
      public void render(Graphics2D g){
        g.setColor(Color.white);
        g.fillRect(x, y, width, height);
View Full Code Here

TOP

Related Classes of main.scenario.Scene

Copyright © 2018 www.massapicom. 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.