basic inventory support

This commit is contained in:
Tnze
2021-07-02 23:49:56 +08:00
parent 4f9779df88
commit 085b2efd6f
2 changed files with 98 additions and 0 deletions

8
bot/screen/inventory.go Normal file
View File

@ -0,0 +1,8 @@
package screen
type Inventory struct {
}
func (inv Inventory) SetSlot(i int, id int32, count byte, NBT interface{}) {
panic("implement me")
}