Beispiel #1
0
 public Mod(string filePath, Utils.ModType type, string installPath, bool enabled)
 {
     this.Filename  = filePath.Replace(installPath + @"\", String.Empty);
     this.Type      = type;
     this.IsEnabled = enabled;
 }
Beispiel #2
0
 public Mod(string filename, Utils.ModType type, bool enabled)
 {
     this.Filename  = filename;
     this.Type      = type;
     this.IsEnabled = enabled;
 }