use of eidolons.libgdx.bf.datasource.GridCellDataSource in project Eidolons by IDemiurge.
the class GridCellContainer method init.
@Override
public GridCellContainer init() {
super.init();
graveyard = new GraveyardView();
addActor(graveyard);
graveyard.setWidth(getWidth());
graveyard.setHeight(getHeight());
setUserObject(new GridCellDataSource(new Coordinates(getGridX(), getGridY())));
return this;
}
Aggregations