示例#1
0
文件: SRMod.cs 项目: Lionmeow/SRML
 public SRMod(SRModInfo info, IModEntryPoint entryPoint)
 {
     this.ModInfo   = info;
     this.EntryType = entryPoint.GetType();
     if (entryPoint is ModEntryPoint)
     {
         entryPoint2 = (ModEntryPoint)entryPoint;
         useNewEntry = true;
     }
     this.entryPoint = entryPoint;
 }
示例#2
0
 public SRMod(SRModInfo info, IModEntryPoint entryPoint, String path) : this(info, entryPoint)
 {
     this.Path = path;
 }
示例#3
0
 public SRMod(SRModInfo info, IModEntryPoint entryPoint)
 {
     this.ModInfo    = info;
     this.EntryType  = entryPoint.GetType();
     this.entryPoint = entryPoint;
 }