예제 #1
0
        public TentManagementGump(Mobile owner, TentBedroll bedroll)
            : base(10, 10)
        {
            m_Owner   = owner;
            m_Bedroll = bedroll;

            Closable   = true;
            Disposable = true;
            Dragable   = true;

            AddPage(1);
            AddBackground(10, 10, 295, 290, 9250);
            AddImageTiled(25, 25, 265, 11, 50);
            AddLabel(80, 35, 0, "Travel Tent Management");

            AddButton(35, 260, 4020, 4022, 0, GumpButtonType.Reply, 1);               //Cancel
            AddButton(250, 260, 4023, 4025, 1, GumpButtonType.Reply, 1);              //Ok

            AddRadio(35, 125, 210, 211, false, 2);
            AddLabel(65, 125, 0, "Deconstruct Tent");

            AddRadio(35, 170, 210, 211, false, 3);
            AddLabel(65, 170, 0, "Safe Logout");
        }