init 1.1.2

This commit is contained in:
2025-07-20 10:01:29 +08:00
commit 2afbbf9be4
1327 changed files with 1596159 additions and 0 deletions
@@ -0,0 +1,13 @@
using UnityEngine;
namespace EmeraldAI
{
/// <summary>
/// Used to allow AI to detect which objects/abilities they should avoid.
/// The AbilityTarget is used to determine which target the ability is intended for.
/// </summary>
public interface IAvoidable
{
Transform AbilityTarget { get; set; }
}
}