Package Hexel

Examples of Hexel.Session


    for (int i = 0; i < len; i++){
      final int _i = i;
      items[i] = new MenuItem(saves[i].getName(), new Runnable() {
        @Override
        public void run() {
          Hexel.session = new Session(saves[_i].getName());
          Set<Thing> things = ThingsFile.load();
          for (Thing thing : things){
            thing.thingBridge = engine.getThingBridge();
            //TODO thing bridge
            if (thing instanceof Player){
View Full Code Here


    MenuItem[] startMenuItems = new MenuItem[]{
        new MenuItem("New Game", new Runnable(){
          @Override
          public void run() {
            Hexel.setSession(new Session());
            double x = 0;
            double y = 0;
            Vector2i tmp = new Vector2i();
            double z = Math.max(engine.chunks.chunkGenerator.tm.getHeightMapAt((int)x, (int)y, tmp)+16, 16);
View Full Code Here

TOP

Related Classes of Hexel.Session

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.