-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ModFSFileInfo: add FromMod field (#509)
* ModFSFileInfo: add FromMod field * Bump version
- Loading branch information
1 parent
61091bf
commit e1ad704
Showing
4 changed files
with
68 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
namespace commonItems.Mods; | ||
|
||
public struct ModFSFileInfo(string relativePath, string absolutePath) { | ||
public struct ModFSFileInfo(bool fromMod, string relativePath, string absolutePath) { | ||
public bool FromMod = fromMod; | ||
public string RelativePath = relativePath; | ||
public string AbsolutePath = absolutePath; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters