10 lines
No EOL
275 B
C#
10 lines
No EOL
275 B
C#
#nullable enable
|
|
using GlobalClassLib;
|
|
using ONDClient.Net;
|
|
|
|
namespace ONDClient.Map;
|
|
|
|
public class MapTileProjection(int id)
|
|
: GlobalMapTile<TileConnectorProjection, MapTileProjection>(id, ClientMapManager.IdToCoords(id)) {
|
|
public ClientPlayer? Owner { get; set; }
|
|
} |