Ejemplo n.º 1
0
 internal void Set(ModInfoInternal?other)
 {
     if (other != null)
     {
         Mods = other.Value.Mods;
         Type = other.Value.Type;
     }
 }
Ejemplo n.º 2
0
 public void Set(EnumerateModsOptions other)
 {
     if (other != null)
     {
         m_ApiVersion = ModsInterface.EnumeratemodsApiLatest;
         LocalUserId  = other.LocalUserId;
         Type         = other.Type;
     }
 }
 public void Set(CopyModInfoOptions other)
 {
     if (other != null)
     {
         m_ApiVersion = ModsInterface.CopymodinfoApiLatest;
         LocalUserId  = other.LocalUserId;
         Type         = other.Type;
     }
 }
Ejemplo n.º 4
0
 public void Set(ModInfo other)
 {
     if (other != null)
     {
         m_ApiVersion = ModsInterface.CopymodinfoApiLatest;
         Mods         = other.Mods;
         Type         = other.Type;
     }
 }
Ejemplo n.º 5
0
 internal void Set(EnumerateModsCallbackInfoInternal?other)
 {
     if (other != null)
     {
         ResultCode  = other.Value.ResultCode;
         LocalUserId = other.Value.LocalUserId;
         ClientData  = other.Value.ClientData;
         Type        = other.Value.Type;
     }
 }