多人游戏教程(三)地图
地图分割
根据地图大小将地图拆分为格子(假设12*12)
地图属性
实现代码(Go语言)
package main
import (
"encoding/json"
"fmt"
"os"
)
type GridSize struct {
Width, Height int
}
type GridInfo struct {
ID int `json:"id"`
X int `json:"x"`
Y int `json:"y"`
Z int `json:"z"`
}
// 计算单...