Package com.pointcliki.dizgruntled.map

Examples of com.pointcliki.dizgruntled.map.MapManager


  public void configureManagers() {
    super.configureManagers();
   
    fPlayerManager = new GruntzPlayerManager(this);
    fGridManager = new GridManager(this, new Vector2f(32f, 32f), new Vector2f(16f, 16f));
    fMapManager = new MapManager(this);
    fPressureManager = new PressureManager(this);
    fEffectManager = new EffectManager(this);
   
    fManagers.put(PlayerManager.class, fPlayerManager);
    fManagers.put(GridManager.class, fGridManager);
View Full Code Here


  }
 
  @Override
  public void configureManagers() {
    super.configureManagers();
    fMapManager = new MapManager(this);
    fGridManager = new GridManager(this, new Vector2f(32f, 32f), new Vector2f(16f, 16f));
    fManagers.put(MapManager.class, fMapManager);
    fManagers.put(GridManager.class, fGridManager);
  }
View Full Code Here

TOP

Related Classes of com.pointcliki.dizgruntled.map.MapManager

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.