You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
527 B
C#
23 lines
527 B
C#
using System;
|
|
|
|
namespace Unity.BossRoom.Gameplay.GameplayObjects
|
|
{
|
|
/// <summary>
|
|
/// Entities that are Targetable by Skills should have their shared NetworkState component implement this interface.
|
|
/// </summary>
|
|
public interface ITargetable
|
|
{
|
|
/// <summary>
|
|
/// Is this targetable entity an Npc or a Pc?
|
|
/// </summary>
|
|
bool IsNpc { get; }
|
|
|
|
/// <summary>
|
|
/// Is this Target currently valid.
|
|
/// </summary>
|
|
bool IsValidTarget { get; }
|
|
}
|
|
|
|
}
|
|
|