miduo_server/tablemanager/src/main/java/config/SEndlessTask.java

49 lines
651 B
Java
Raw Normal View History

2021-05-23 18:06:21 +08:00
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;
}
}