14 lines
243 B
Go
14 lines
243 B
Go
package inventory
|
|
|
|
import "git.konjactw.dev/falloutBot/go-mc/chat"
|
|
|
|
type ContainerOpenEvent struct {
|
|
WindowID int32
|
|
Type int32
|
|
Title chat.Message
|
|
}
|
|
|
|
func (c ContainerOpenEvent) EventID() string {
|
|
return "inventory:container_open"
|
|
}
|