(point Vector)
| 2460 | } |
| 2461 | |
| 2462 | func (mapData *MapData) Get(point Vector) int { |
| 2463 | return mapData.GetI(int(point.X), int(point.Y)) |
| 2464 | } |
| 2465 | |
| 2466 | func (mapData *MapData) Serialize() string { |
| 2467 | dataStr, _ := sjson.Set("{}", "contents", mapData.Data) |
no test coverage detected