Esempio n. 1
0
 public bool Equals(IVirtualModLink other)
 {
     if (other == null)
     {
         return(false);
     }
     return(this.RealModPath.Equals(other.RealModPath, StringComparison.InvariantCultureIgnoreCase) && this.VirtualModPath.Equals(other.VirtualModPath, StringComparison.InvariantCultureIgnoreCase));
 }
Esempio n. 2
0
 public VirtualModLink(IVirtualModLink p_vmlLink)
 {
     VirtualModPath = p_vmlLink.VirtualModPath;
     RealModPath    = p_vmlLink.RealModPath;
     Priority       = p_vmlLink.Priority;
     Active         = p_vmlLink.Active;
     ModInfo        = p_vmlLink.ModInfo;
 }
 public void UpdateLinkPriority(IVirtualModLink p_ivlFileLink)
 {
     throw new NotImplementedException();
 }
 public void RemoveFileLink(IVirtualModLink p_ivlVirtualLink, Mods.IMod p_modMod)
 {
     throw new NotImplementedException();
 }
 public void UpdateLinkPriority(IVirtualModLink p_ivlFileLink)
 {
     throw new NotImplementedException();
 }
 public void RemoveFileLink(IVirtualModLink p_ivlVirtualLink, Mods.IMod p_modMod)
 {
     throw new NotImplementedException();
 }