Package ch.fusun.baron.map.api

Examples of ch.fusun.baron.map.api.GameMapUpdate


    return this.height;
  }

  @Override
  public DataUpdate createFullUpdate() {
    return new GameMapUpdate(this.width, this.height);
  }
View Full Code Here


        for (int j = 0; j < this.height; j++) {
          tiles.add(new Tile(i, j));
        }
      }
    }
    notifyListeners(new GameMapUpdate(this.width, this.height));
  }
View Full Code Here

TOP

Related Classes of ch.fusun.baron.map.api.GameMapUpdate

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.