blob: 3d62537103139372863dda9ad18dd6e431add1a9 (
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
|
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 implements Action {
private Set<Action> preRequisite = new HashSet<Action>();
public ActionRoot() {
}
@Override
public Set<Action> getPreRequisites(DungeonRoom dungeonRoom) {
return preRequisite;
}
@Override
public String toString() {
return "Action Root";
}
}
|