add SwingArm, Respawn and UseItem function

This commit is contained in:
JunDao
2019-05-03 19:49:13 +08:00
parent 150a5c6f8c
commit b1422863d0
4 changed files with 68 additions and 33 deletions

View File

@ -5,7 +5,9 @@ import (
)
type eventBroker struct {
GameStart func() error
ChatMsg func(msg chat.Message) error
Disconnect func(reason chat.Message) error
GameStart func() error
ChatMsg func(msg chat.Message) error
Disconnect func(reason chat.Message) error
HealhtChange func() error
Die func() error
}