blob: 2a47f99be41d156f1089e58dd59aad9d58801e7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
package kr.syeyoung.dungeonsguide.dungeon.actions;
import kr.syeyoung.dungeonsguide.dungeon.roomfinder.DungeonRoom;
import java.util.Collections;
import java.util.Set;
public class ActionComplete extends AbstractAction {
@Override
public Set<Action> getPreRequisites(DungeonRoom dungeonRoom) {
return Collections.emptySet();
}
@Override
public boolean isComplete(DungeonRoom dungeonRoom) {
return false;
}
@Override
public String toString() {
return "Completed";
}
}
|