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