17 lines
145 B
Go
17 lines
145 B
Go
package main
|
|
|
|
import (
|
|
"grid-mmo-server/server"
|
|
)
|
|
|
|
type world struct {
|
|
tiles [][]tile
|
|
}
|
|
|
|
type tile struct {
|
|
}
|
|
|
|
func main() {
|
|
server.Start()
|
|
}
|