20 lines
412 B
C#
20 lines
412 B
C#
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
|
|
}
|
|
} |