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();
|
|
}
|
|
} |