back_recharge
jiahuiwen 2019-01-04 18:23:25 +08:00
parent ea6d17712d
commit 1b4c3305a6
1 changed files with 16 additions and 6 deletions

View File

@ -1,14 +1,24 @@
package com.ljsd.jieling.logic.map;
public class CellValue {
import com.google.common.collect.Sets;
private int eventType;
import java.util.Set;
public int getEventType() {
return eventType;
public class Cell {
private Set<Integer> eventIds = Sets.newConcurrentHashSet();;
private boolean isFinish;
public Set<Integer> getEventIds() {
return eventIds;
}
public void setEventType(int eventType) {
this.eventType = eventType;
public boolean isFinish() {
return isFinish;
}
public void setFinish(boolean finish) {
isFinish = finish;
}
}