您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
20 行
527 B
20 行
527 B
namespace Unity.Multiplayer.Samples.BossRoom
|
|
{
|
|
/// <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; }
|
|
}
|
|
|
|
}
|
|
|