chomp
6e4c7abf73
Co-authored-by: Alex <alex@dm-me-for-questions.com> Reviewed-on: SPT-AKI/LootDumpProcessor#6
13 lines
383 B
C#
13 lines
383 B
C#
namespace LootDumpProcessor.Process.Processor.FileProcessor;
|
|
|
|
public static class FileProcessorFactory
|
|
{
|
|
private static IFileProcessor? _fileProcessor;
|
|
public static IFileProcessor GetInstance()
|
|
{
|
|
// TODO: implement actual factory someday
|
|
if (_fileProcessor == null)
|
|
_fileProcessor = new FileProcessor();
|
|
return _fileProcessor;
|
|
}
|
|
} |