Exemple #1
0
 public AuxActionRef(AuxiliaryAction actionType = AuxActionRef.AuxiliaryAction.None)
 {
     IsGeneric  = true;
     ActionType = actionType;
 }
Exemple #2
0
        //================================================================================================//
        /// <summary>
        /// AIAuxActionsRef: Generic Constructor
        /// The specific datas are used to fired the Action.
        /// </summary>

        public AuxActionRef(AuxiliaryAction actionType, bool isGeneric)
        {
            IsGeneric  = isGeneric;
            ActionType = actionType;
        }