예제 #1
0
파일: PluginInfo.cs 프로젝트: Mofsy/jinxbot
        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);
        }
예제 #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);
        }
예제 #3
0
파일: PluginInfo.cs 프로젝트: Mofsy/jinxbot
 public PluginInfo(JinxBotPluginAttribute attr, Type t, string multiClientName) 
     : this(attr, t)
 {
     m_mcName = multiClientName;
 }
예제 #4
0
 public PluginInfo(JinxBotPluginAttribute attr, Type t, string multiClientName)
     : this(attr, t)
 {
     m_mcName = multiClientName;
 }