Skip to content

Commit

Permalink
Expose raw values on slots.
Browse files Browse the repository at this point in the history
  • Loading branch information
int19h committed Nov 25, 2018
1 parent 7708989 commit 5929192
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion WarBender/Slots.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ public class Slots : LengthPrefixedCollection<long>, IList, IEnumerable<object>
[Browsable(false)]
public new IRecord Parent => (IRecord)((IDataObject)this).Parent;

private LengthPrefixedCollection<long> Raw => this;
[Browsable(false)]
public LengthPrefixedCollection<long> Raw => this;

private IReadOnlyList<SlotDefinition> _slotDefinitions;

Expand Down

0 comments on commit 5929192

Please sign in to comment.