Project290.Menus.MenuAction.MenuAction C# (CSharp) Method

MenuAction() public method

Initializes a new instance of the MenuAction class.
public MenuAction ( ActionType actionType, IMenuDelegate menuDelegate ) : System
actionType ActionType Type of the action.
menuDelegate IMenuDelegate The menu delegate.
return System
        public MenuAction(ActionType actionType, IMenuDelegate menuDelegate)
        {
            this.actionType = actionType;
            this.menuDelegate = menuDelegate;
        }