mirror of
https://bitbucket.org/s_l_teichmann/mtsatellite
synced 2024-11-08 11:10:27 +01:00
8 lines
103 B
Go
8 lines
103 B
Go
package common
|
|
|
|
// Block data from Minetest database.
|
|
type Block struct {
|
|
Coord Coord
|
|
Data []byte
|
|
}
|