mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 07:30:44 -05:00
10 lines
225 B
C#
10 lines
225 B
C#
![]() |
namespace LootDumpProcessor.Process.Collector;
|
|||
|
|
|||
|
public static class CollectorFactory
|
|||
|
{
|
|||
|
public static ICollector GetInstance()
|
|||
|
{
|
|||
|
// TODO: implement real factory
|
|||
|
return new HashSetCollector();
|
|||
|
}
|
|||
|
}
|