mirror of
https://github.com/sp-tarkov/loot-dump-processor.git
synced 2025-02-13 08:50:44 -05:00
8 lines
166 B
C#
8 lines
166 B
C#
using LootDumpProcessor.Model.Processing;
|
|
|
|
namespace LootDumpProcessor.Process;
|
|
|
|
public interface IFileProcessor
|
|
{
|
|
PartialData Process(BasicInfo parsedData);
|
|
} |