16 lines
285 B
Go
16 lines
285 B
Go
package conf
|
|
|
|
import (
|
|
"github.com/Tnze/go-mc/bot"
|
|
"github.com/Tnze/go-mc/bot/basic"
|
|
"github.com/Tnze/go-mc/bot/msg"
|
|
"github.com/Tnze/go-mc/bot/playerlist"
|
|
)
|
|
|
|
var (
|
|
Client *bot.Client
|
|
Player *basic.Player
|
|
ChatHandler *msg.Manager
|
|
PlayerList *playerlist.PlayerList
|
|
)
|