blob: abe3e263d9358f1075d27f04eb14d90a6d38260b (
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
28
29
30
31
32
33
34
35
|
package kr.syeyoung.dungeonsguide.dungeon.data;
import lombok.Getter;
import lombok.Setter;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
@Getter
@Setter
public class DungeonRoomInfo implements Serializable {
public DungeonRoomInfo(short shape, byte color) {
this.uuid = UUID.randomUUID();
this.name = this.uuid.toString();
this.shape = shape;
this.color = color;
}
private transient boolean registered;
private short shape;
private byte color;
private int[][] blocks;
private UUID uuid;
private String name;
private String processorId = "default";
private Map<String, Object> properties = new HashMap<String, Object>();
}
|