Example #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);
        }
Example #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);
        }
Example #3
0
 public PluginInfo(JinxBotPluginAttribute attr, Type t, string multiClientName) 
     : this(attr, t)
 {
     m_mcName = multiClientName;
 }
Example #4
0
 public PluginInfo(JinxBotPluginAttribute attr, Type t, string multiClientName)
     : this(attr, t)
 {
     m_mcName = multiClientName;
 }