OneNightDuel/ONDServer/Map/MapTile.cs

9 lines
244 B
C#
Raw Permalink Normal View History

using System.Net.Security;
using GlobalClassLib;
using ONDServer.Net;
namespace ONDServer.Map;
public class MapTile(int id) : GlobalMapTile<TileConnector, MapTile>(id, MapManager.IdToCoords(id)) {
public ServerPlayer? Owner{ get; set; }
}