/*
* Copyright (C) 2016 eccentric_nz
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package me.eccentric_nz.TARDIS.ARS;
/**
* Architectural Configuration is the ability a TARDIS has to move rooms around
* and delete rooms as if it were a computer. If a TARDIS is sluggish, a room
* could be jettisoned (or "deleted").
*
* @author eccentric_nz
*/
public class TARDISARSMapData {
private int[][][] data;
private int e;
private int s;
private int y;
private int id;
public int[][][] getData() {
return data;
}
public void setData(int[][][] data) {
this.data = data;
}
public int getE() {
return e;
}
public void setE(int e) {
this.e = e;
}
public int getS() {
return s;
}
public void setS(int s) {
this.s = s;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}