Beispiel #1
0
 /// <summary>
 /// Asks the <see cref="GameActionManager"/> to instantly execute this <see cref="GameAction"/>
 /// </summary>
 public void Execute() => GameActionManager.ExecuteAction(this);
Beispiel #2
0
 /// <summary>
 /// Add this <see cref="GameAction"/> to the <see cref="GameActionManager"/>'s action queue.
 /// A queued <see cref="GameAction"/> will be performed after every previously queued actions
 /// </summary>
 public void Enqueue() => GameActionManager.EnqueueAction(this);