forked from fluffy-mods/RW_Outfitter
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99e5a02
commit 51ca993
Showing
28 changed files
with
1,252 additions
and
1,300 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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,24 +1,21 @@ | ||
// ReSharper disable StyleCop.SA1307 | ||
|
||
using System.Collections.Generic; | ||
using RimWorld; | ||
|
||
namespace Outfitter | ||
{ | ||
using System.Collections.Generic; | ||
|
||
using RimWorld; | ||
|
||
public class ApparelEntry | ||
{ | ||
public HashSet<StatDef> equippedOffsets; | ||
|
||
public HashSet<StatDef> infusedOffsets; | ||
|
||
public HashSet<StatDef> statBases; | ||
public HashSet<StatDef> EquippedOffsets; | ||
public HashSet<StatDef> InfusedOffsets; | ||
public HashSet<StatDef> StatBases; | ||
|
||
public ApparelEntry() | ||
{ | ||
this.equippedOffsets = new HashSet<StatDef>(); | ||
this.infusedOffsets = new HashSet<StatDef>(); | ||
this.statBases = new HashSet<StatDef>(); | ||
this.EquippedOffsets = new HashSet<StatDef>(); | ||
this.InfusedOffsets = new HashSet<StatDef>(); | ||
this.StatBases = new HashSet<StatDef>(); | ||
} | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
9 changes: 4 additions & 5 deletions
9
Source/Outfitter/Filter/SpecialThingFilterWorker_DeadmansApparel.cs
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
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
Oops, something went wrong.