Ejemplo n.º 1
0
        public PluginInfo(JinxBotPluginAttribute attr, Type t)
        {
            Debug.Assert(t != null);

            m_type = t;

            m_name = attr.Name;
            m_desc = attr.Description;
            m_author = attr.Author;
            m_ver = new Version(attr.Version);
        }
Ejemplo n.º 2
0
        public PluginInfo(JinxBotPluginAttribute attr, Type t)
        {
            Debug.Assert(t != null);

            m_type = t;

            m_name   = attr.Name;
            m_desc   = attr.Description;
            m_author = attr.Author;
            m_ver    = new Version(attr.Version);
        }
Ejemplo n.º 3
0
 public PluginInfo(JinxBotPluginAttribute attr, Type t, string multiClientName) 
     : this(attr, t)
 {
     m_mcName = multiClientName;
 }
Ejemplo n.º 4
0
 public PluginInfo(JinxBotPluginAttribute attr, Type t, string multiClientName)
     : this(attr, t)
 {
     m_mcName = multiClientName;
 }