Beispiel #1
0
 public ModInfo(ModInfo other)
 {
     Title       = other.Title;
     Description = other.Description;
     Version     = other.Version;
     Authors     = other.Authors;
     Containers  = new List <ModContainerInfo>(other.Containers.Count);
     for (int i = 0; i < Containers.Count; i++)
     {
         Containers[i] = new ModContainerInfo(other.Containers[i]);
     }
 }
Beispiel #2
0
 public ModContainerInfo(ModContainerInfo other)
 {
     Path  = other.Path;
     Merge = other.Merge;
 }