Esempio n. 1
0
 /// <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;
 }
 /// <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;
 }