Package zelda.scene

Examples of zelda.scene.ZeldaScene


        g2.draw(v);
      }

      if(game.getScene() instanceof ZeldaScene)
      {
        ZeldaScene zeldaScene = (ZeldaScene)game.getScene();

        for(Shape v : zeldaScene.getExits())
        {
          g2.setColor(Color.magenta);
          g2.draw(v);
        }
      }
View Full Code Here

TOP

Related Classes of zelda.scene.ZeldaScene

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.