49 lines
651 B
Java
49 lines
651 B
Java
|
package config;
|
||
|
|
||
|
import manager.STableManager;
|
||
|
import manager.Table;
|
||
|
|
||
|
import java.util.Map;
|
||
|
|
||
|
@Table(name ="EndlessTask")
|
||
|
public class SEndlessTask implements BaseConfig {
|
||
|
|
||
|
private int id;
|
||
|
|
||
|
private int type;
|
||
|
|
||
|
private int[][] values;
|
||
|
|
||
|
private int[][] reward;
|
||
|
|
||
|
private int[][] mazePoint;
|
||
|
|
||
|
|
||
|
@Override
|
||
|
public void init() throws Exception {
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public int getId() {
|
||
|
return id;
|
||
|
}
|
||
|
|
||
|
public int getType() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
public int[][] getValues() {
|
||
|
return values;
|
||
|
}
|
||
|
|
||
|
public int[][] getReward() {
|
||
|
return reward;
|
||
|
}
|
||
|
|
||
|
public int[][] getMazePoint() {
|
||
|
return mazePoint;
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|