Stats in dictionary

This commit is contained in:
Matt Nadareski
2020-07-27 01:39:32 -07:00
parent 3621807790
commit 706eb7c0a6
7 changed files with 599 additions and 643 deletions

View File

@@ -15,7 +15,7 @@ namespace SabreTools.Library.Reports
{
protected string _name;
protected long _machineCount;
protected DatStats _stats;
protected ItemDictionary _stats;
protected StreamWriter _writer;
protected bool _baddumpCol;
@@ -104,7 +104,7 @@ namespace SabreTools.Library.Reports
/// <summary>
/// Replace the statistics that is being output
/// </summary>
public void ReplaceStatistics(string datName, long machineCount, DatStats datStats)
public void ReplaceStatistics(string datName, long machineCount, ItemDictionary datStats)
{
_name = datName;
_machineCount = machineCount;