Files
harper c5cb04d760 sync
2026-07-09 20:43:41 -07:00

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()
}