Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Scighost committed Jul 19, 2024
1 parent 46aadfe commit ffc8691
Show file tree
Hide file tree
Showing 3 changed files with 439 additions and 20 deletions.
16 changes: 15 additions & 1 deletion src/Starward/Services/Download/InstallGameItem.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
using System;
using System.Collections.Generic;

namespace Starward.Services.Download;

internal class InstallGameItem
{


public InstallGameItemType Type { get; set; }


public string FileName { get; set; }


Expand All @@ -14,6 +19,12 @@ internal class InstallGameItem
public string Path { get; set; }


public List<string> PackageFiles { get; set; }


public string TargetPath { get; set; }


public bool IsFolder { get; set; }


Expand All @@ -32,7 +43,10 @@ internal class InstallGameItem
public bool WriteAsTempFile { get; set; }


public InstallGameItemType Type { get; set; }
public void EnsureValid()
{

}


}
Loading

0 comments on commit ffc8691

Please sign in to comment.