Class AttackOrchestratorOperation
Class that represents a combat operation that orchestrates attack operations.
Inheritance
System.Object
Priority_Queue.FastPriorityQueueNode
Priority_Queue.StablePriorityQueueNode
AttackOrchestratorOperation
Inherited Members
Priority_Queue.StablePriorityQueueNode.InsertionIndex
Priority_Queue.FastPriorityQueueNode.Priority
Priority_Queue.FastPriorityQueueNode.QueueIndex
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Fibula.Mechanics.Operations
Assembly: Fibula.Mechanics.dll
Syntax
public class AttackOrchestratorOperation : Operation, IEquatable<BaseEvent>, IOperation, IEvent
Constructors
| Improve this Doc View SourceAttackOrchestratorOperation(ICombatant)
Initializes a new instance of the AttackOrchestratorOperation class.
Declaration
public AttackOrchestratorOperation(ICombatant attacker)
Parameters
Type | Name | Description |
---|---|---|
ICombatant | attacker | The combatant that is attacking. |
Properties
| Improve this Doc View SourceAttacker
Gets the combatant that is attacking on this operation.
Declaration
public ICombatant Attacker { get; }
Property Value
Type | Description |
---|---|
ICombatant |
Methods
| Improve this Doc View SourceExecute(IOperationContext)
Executes the operation's logic.
Declaration
protected override void Execute(IOperationContext context)
Parameters
Type | Name | Description |
---|---|---|
IOperationContext | context | A reference to the operation context. |
Overrides
Implements
System.IEquatable<T>