using UnityEngine; // ReSharper disable once CheckNamespace namespace BlueWaterProject { public class TowerAi : BaseAi { #region Properties and variables [SerializeField] protected IslandInfo defendingIslandInfo; #endregion #region Custom methods public void SetDefendingIslandInfo(IslandInfo value) => defendingIslandInfo = value; #endregion } }