LootDumpProcessor/GCHandler.cs

12 lines
236 B
C#
Raw Normal View History

2023-08-12 19:08:38 +01:00
namespace LootDumpProcessor;
public static class GCHandler
2023-08-12 19:08:38 +01:00
{
public static void Collect()
{
if (LootDumpProcessorContext.GetConfig().ManualGarbageCollectionCalls)
{
GC.Collect();
}
}
}