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]); } }
public ModContainerInfo(ModContainerInfo other) { Path = other.Path; Merge = other.Merge; }