implementing storing chest data into Manager.Screens in bot/screen (#279)

This commit is contained in:
Lukas
2024-05-01 20:01:02 +08:00
committed by GitHub
parent 010ce516d7
commit d63cc1de3f
5 changed files with 225 additions and 5 deletions

View File

@ -1,7 +1,9 @@
package screen
import "github.com/Tnze/go-mc/chat"
type EventsListener struct {
Open func(id int) error
Open func(id int, container_type int32, title chat.Message) error
SetSlot func(id, index int) error
Close func(id int) error
}