diff --git a/SabreTools.Library/Dats/DatStats.cs b/SabreTools.Library/Dats/DatStats.cs
index f09475a8..31f3128a 100644
--- a/SabreTools.Library/Dats/DatStats.cs
+++ b/SabreTools.Library/Dats/DatStats.cs
@@ -133,7 +133,7 @@ namespace SabreTools.Library.Dats
/// Add to the statistics given a DatItem
///
/// Item to add info from
- private void AddItem(DatItem item)
+ public void AddItem(DatItem item)
{
// No matter what the item is, we increate the count
lock (_lockObject)
@@ -198,7 +198,7 @@ namespace SabreTools.Library.Dats
/// Remove from the statistics given a DatItem
///
/// Item to remove info for
- private void RemoveItem(DatItem item)
+ public void RemoveItem(DatItem item)
{
// No matter what the item is, we increate the count
lock (_lockObject)
@@ -262,7 +262,7 @@ namespace SabreTools.Library.Dats
///
/// Reset all statistics
///
- private void Reset()
+ public void Reset()
{
_count = 0;