2023-09-20 06:43:24 +00:00
|
|
|
using UnityEngine;
|
|
|
|
|
2023-09-19 17:22:19 +00:00
|
|
|
// ReSharper disable once CheckNamespace
|
|
|
|
namespace BlueWaterProject
|
|
|
|
{
|
|
|
|
public class TowerAi : BaseAi
|
|
|
|
{
|
2023-09-20 06:43:24 +00:00
|
|
|
#region Properties and variables
|
|
|
|
|
|
|
|
[SerializeField] protected IslandInfo defendingIslandInfo;
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
#region Custom methods
|
|
|
|
|
|
|
|
public void SetDefendingIslandInfo(IslandInfo value) => defendingIslandInfo = value;
|
|
|
|
|
|
|
|
#endregion
|
2023-09-19 17:22:19 +00:00
|
|
|
}
|
|
|
|
}
|