-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructs.go
More file actions
24 lines (22 loc) · 815 Bytes
/
structs.go
File metadata and controls
24 lines (22 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package main
type MapData struct {
Data struct {
ZCenter int `nbt:"zCenter"`
UnlimitedTracking byte `nbt:"unlimitedTracking"`
TrackingPosition byte `nbt:"trackingPosition"`
Frames []int `nbt:"frames"`
Scale byte `nbt:"scale"`
Locked byte `nbt:"locked"`
Dimension string `nbt:"dimension"`
Banners []string `nbt:"banners"`
XCenter int `nbt:"xCenter"`
Colors []byte `nbt:"colors"`
}
DataVersion int `nbt:"DataVersion"`
}
type ColorMap struct {
Colormap_1_12 map[int][]int `json:"colormap-1_12"`
Colormap_1_8_1 map[int][]int `json:"colormap-1_8_1"`
Colormap_1_7_2 map[int][]int `json:"colormap-1_7_2"`
Colormap_Original map[int][]int `json:"colormap-original"`
}