Esempio n. 1
0
        public static void Batch_OnCommand( CommandEventArgs e )
        {
            Batch batch = new Batch();

            e.Mobile.SendGump( new BatchGump( e.Mobile, batch ) );
        }
Esempio n. 2
0
        public BatchScopeGump(Mobile from, Batch batch)
            : base(30, 30)
        {
            this.m_From = from;
            this.m_Batch = batch;

            this.Render();
        }
Esempio n. 3
0
        public BatchScopeGump( Mobile from, Batch batch )
            : base(30, 30)
        {
            m_From = from;
            m_Batch = batch;

            Render();
        }
Esempio n. 4
0
        public static void Batch_OnCommand(CommandEventArgs e)
        {
            Batch batch = new Batch();

            e.Mobile.SendGump(new BatchGump(e.Mobile, batch));
        }