diff options
author | syeyoung <42869671+cyoung06@users.noreply.github.com> | 2020-11-22 20:05:51 +0900 |
---|---|---|
committer | syeyoung <42869671+cyoung06@users.noreply.github.com> | 2020-11-22 20:05:51 +0900 |
commit | 70a753c2a0aac9bd7e7e21ca081c4ee994bc4891 (patch) | |
tree | de7bef79f537650c7c1d557fcf86dd1bce7d64f0 /src/main/java/kr/syeyoung/dungeonsguide/dungeon/data | |
parent | 527732c2242d1dc0556c6a6cd49f4847b1f9c716 (diff) | |
download | Skyblock-Dungeons-Guide-70a753c2a0aac9bd7e7e21ca081c4ee994bc4891.tar.gz Skyblock-Dungeons-Guide-70a753c2a0aac9bd7e7e21ca081c4ee994bc4891.tar.bz2 Skyblock-Dungeons-Guide-70a753c2a0aac9bd7e7e21ca081c4ee994bc4891.zip |
room building
Diffstat (limited to 'src/main/java/kr/syeyoung/dungeonsguide/dungeon/data')
-rw-r--r-- | src/main/java/kr/syeyoung/dungeonsguide/dungeon/data/DungeonRoom.java | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/main/java/kr/syeyoung/dungeonsguide/dungeon/data/DungeonRoom.java b/src/main/java/kr/syeyoung/dungeonsguide/dungeon/data/DungeonRoom.java new file mode 100644 index 00000000..9cf22ebb --- /dev/null +++ b/src/main/java/kr/syeyoung/dungeonsguide/dungeon/data/DungeonRoom.java @@ -0,0 +1,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; + } +} |