2026-03-28 09:59:31 +01:00
|
|
|
#nullable enable
|
2026-02-14 14:35:29 +01:00
|
|
|
using GlobalClassLib;
|
2026-03-28 09:59:31 +01:00
|
|
|
using ONDClient.Net;
|
2026-02-14 14:35:29 +01:00
|
|
|
|
2026-03-22 18:31:05 +01:00
|
|
|
namespace ONDClient.Map;
|
2026-02-14 14:35:29 +01:00
|
|
|
|
2026-03-28 09:59:31 +01:00
|
|
|
public class MapTileProjection(int id)
|
|
|
|
|
: GlobalMapTile<TileConnectorProjection, MapTileProjection>(id, ClientMapManager.IdToCoords(id)) {
|
2026-03-12 22:33:35 +01:00
|
|
|
public ClientPlayer? Owner { get; set; }
|
2026-02-14 14:35:29 +01:00
|
|
|
}
|