LogicSpawn.GTARPG.Core.General.RPGListMenu.RPGListMenu C# (CSharp) Method

RPGListMenu() public method

public RPGListMenu ( string bannerCaption, LogicSpawn.GTARPG.Core.Objects.GTASprite banner, Action activationAction, IMenuItem items ) : System
bannerCaption string
banner LogicSpawn.GTARPG.Core.Objects.GTASprite
activationAction Action
items IMenuItem
return System
        public RPGListMenu(string bannerCaption, GTASprite banner, Action<RPGListMenu> activationAction, IMenuItem[] items)
            : base("",items)
        {
            _banner = banner;
            _bannerCaption = bannerCaption;
            _activationAction = activationAction;
        }