blob: 9cf22ebbe4e97cfa00fe384189b0def8a2220336 (
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
|
package kr.syeyoung.dungeonsguide.dungeon.data;
import kr.syeyoung.dungeonsguide.dungeon.DungeonContext;
import lombok.Getter;
import net.minecraft.util.BlockPos;
import java.awt.*;
import java.util.List;
@Getter
public class DungeonRoom {
private final List<Point> unitPoints;
private final short shape;
private final byte color;
private final BlockPos min;
private final DungeonContext context;
public DungeonRoom(List<Point> points, short shape, byte color, BlockPos min, DungeonContext context) {
this.unitPoints = points;
this.shape = shape;
this.color = color;
this.min = min;
this.context = context;
}
}
|