blob: f1228e81ab7adc279f33e29cb21e80872d15da74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package kr.syeyoung.dungeonsguide.dungeon.actions;
import kr.syeyoung.dungeonsguide.dungeon.roomfinder.DungeonRoom;
import lombok.Data;
import java.util.HashSet;
import java.util.Set;
@Data
public class ActionRoot extends AbstractAction {
private Set<Action> preRequisite = new HashSet<Action>();
public ActionRoot() {
}
@Override
public Set<Action> getPreRequisites(DungeonRoom dungeonRoom) {
return preRequisite;
}
@Override
public boolean isComplete(DungeonRoom dungeonRoom) {
return true;
}
@Override
public String toString() {
return "Action Root";
}
}
|