Inheritance: UnityEngine.ScriptableObject
コード例 #1
0
 public DownloadPackage(
     Sources sources,
     IFolderCommands folderCommands)
     : base(sources)
 {
     this.folderCommands = folderCommands;
 }
コード例 #2
0
 public InstallCommandArgs(Sources sources)
     : base(sources)
 {
 }
コード例 #3
0
 public ListCommandArgs(Sources sources)
     : base(sources)
 {
 }
コード例 #4
0
 public NuGetCommand(Sources sources)
 {
     this.Sources = sources;
     // Can only be called on main thread
     this.dataPath = Application.dataPath;
 }