README
¶
Documentation
¶
type Level struct {
Map Map `json:"tables"`
Spawn Point
}
type Map struct {
Wall []Wall `json:"Wall"`
Plot []Plot `json:"Plot"`
}
type Plot struct {
Points []Point `json:"points"`
}
type Point struct {
X int `json:"x"`
Y int `json:"y"`
}
type Wall struct {
Points []Point `json:"points"`
Thickness int `json:"thickness"`
}
Source Files
¶
Directories
¶
Click to show internal directories.
Click to hide internal directories.