0
0
mirror of https://github.com/sp-tarkov/loot-dump-processor.git synced 2025-02-13 09:30:46 -05:00

13 lines
276 B
C#

namespace LootDumpProcessor.Process;
public class NumericKeyGenerator : IKeyGenerator
{
private ulong _currentKey;
public string Generate()
{
var key = _currentKey;
Interlocked.Increment(ref _currentKey);
return key.ToString();
}
}