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.
30 lines
578 B
C#
30 lines
578 B
C#
using System;
|
|
|
|
namespace Unity.BossRoom.Gameplay.Actions
|
|
{
|
|
/// <summary>
|
|
/// List of all Types of Actions. There is a many-to-one mapping of Actions to ActionLogics.
|
|
/// </summary>
|
|
public enum ActionLogic
|
|
{
|
|
Melee,
|
|
RangedTargeted,
|
|
Chase,
|
|
Revive,
|
|
LaunchProjectile,
|
|
Emote,
|
|
RangedFXTargeted,
|
|
AoE,
|
|
Trample,
|
|
ChargedShield,
|
|
Stunned,
|
|
Target,
|
|
ChargedLaunchProjectile,
|
|
StealthMode,
|
|
DashAttack,
|
|
ImpToss,
|
|
PickUp,
|
|
Drop
|
|
}
|
|
}
|