15 lines
172 B
Go
15 lines
172 B
Go
package main
|
|
|
|
import (
|
|
"f5"
|
|
)
|
|
|
|
type GlobalVar struct {
|
|
MetaMgr *MetaMgr
|
|
HttpServer *f5.HttpServer
|
|
GameLog *GameLog
|
|
GameMgr *GameMgr
|
|
}
|
|
|
|
var G *GlobalVar = &GlobalVar{}
|