package config; import manager.STableManager; import manager.Table; import java.util.Map; @Table(name ="RaceTowerConfig") public class SRaceTowerConfig implements BaseConfig { private int id; private int type; private int openRules; private int[] reward; private int[] firstReward; private int monsterId; private int[][] teamRules; private int[][] attribute; private int[] privilege; private int formation; @Override public void init() throws Exception { } public int getId() { return id; } public int getType() { return type; } public int getOpenRules() { return openRules; } public int[] getReward() { return reward; } public int[] getFirstReward() { return firstReward; } public int getMonsterId() { return monsterId; } public int[][] getTeamRules() { return teamRules; } public int[][] getAttribute() { return attribute; } public int[] getPrivilege() { return privilege; } public int getFormation() { return formation; } }