12 lines
208 B
Go
12 lines
208 B
Go
package block
|
|
|
|
type PointedDripstone struct {
|
|
Thickness string
|
|
Vertical_direction string
|
|
Waterlogged string
|
|
}
|
|
|
|
func (PointedDripstone) ID() string {
|
|
return "minecraft:pointed_dripstone"
|
|
}
|