/// <summary> /// Creates a new set of EventArgs that can be used in events /// to notify creatures of a completed action. /// </summary> /// <param name="actionID">The ID of the action that was completed.</param> /// <param name="action">The action that was completed.</param> protected ActionResponseEventArgs(int actionID, Action action) { ActionID = actionID; Action = action; }