Moved Block as type to common structures.

This commit is contained in:
Sascha L. Teichmann
2014-09-07 15:57:25 +02:00
parent 70e8d5a548
commit d75fe4f102
5 changed files with 16 additions and 15 deletions

7
common/block.go Normal file
View File

@ -0,0 +1,7 @@
package common
// Block data from Minetest database.
type Block struct {
Coord Coord
Data []byte
}