blob: 24388d8acf1350cde9d87003cebbc8694de31301 (
plain)
1
2
3
4
5
6
7
|
package kr.syeyoung.dungeonsguide.dungeon.mechanics;
import kr.syeyoung.dungeonsguide.dungeon.roomfinder.DungeonRoom;
public interface RouteBlocker {
boolean isBlocking(DungeonRoom dungeonRoom);
}
|