2026-02-14 14:35:29 +01:00
|
|
|
using GlobalClassLib;
|
|
|
|
|
|
|
|
|
|
namespace FNAF_Clone.Map;
|
|
|
|
|
|
|
|
|
|
public class TileConnectorProjection : GlobalTileConnector<MapTileProjection, TileConnectorProjection> {
|
2026-03-12 22:33:35 +01:00
|
|
|
public ClientPlayer? Owner { get; set; }
|
2026-02-14 14:35:29 +01:00
|
|
|
public TileConnectorProjection(MapTileProjection tile1, MapTileProjection tile2, ConnectorType type) : base(tile1, tile2, type) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public TileConnectorProjection(MapTileProjection tile2, ConnectorType type) : base(tile2, type) {
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-12 22:33:35 +01:00
|
|
|
public override TileConnectorProjection Clone() => new(Tiles.tile1, Tiles.tile2, Type){Owner = Owner};
|
2026-02-14 14:35:29 +01:00
|
|
|
}
|