Exemplo n.º 1
0
        public CustomHuePickerGump(
            Mobile from, CustomHuePicker definition, CustomHuePickerCallback <T> callback, T state
            ) : base(50, 50)
        {
            m_From       = from;
            m_Definition = definition;
            m_Callback   = callback;
            m_State      = state;

            RenderBackground();
            RenderCategories();
        }
Exemplo n.º 2
0
        public CustomHuePickerGump( Mobile from, CustomHuePicker definition, CustomHuePickerCallback callback, object state )
            : base(50, 50)
        {
            m_From = from;
            m_Definition = definition;
            m_Callback = callback;
            m_State = state;

            RenderBackground();
            RenderCategories();
        }