initial commit

This commit is contained in:
wooshings
2026-06-29 11:28:51 -07:00
commit bc14e946fc
9 changed files with 342 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package main
import (
"grid-mmo-server/server"
)
type world struct {
tiles [][]tile
}
type tile struct {
}
func main() {
server.Start()
}