chomp
6e4c7abf73
Co-authored-by: Alex <alex@dm-me-for-questions.com> Reviewed-on: SPT-AKI/LootDumpProcessor#6
13 lines
278 B
C#
13 lines
278 B
C#
using LootDumpProcessor.Utils;
|
|
|
|
namespace LootDumpProcessor.Storage.Collections;
|
|
|
|
public class FlatKeyableList<T> : List<T>, IKeyable
|
|
{
|
|
public string __ID { get; } = KeyGenerator.GetNextKey();
|
|
|
|
public IKey GetKey()
|
|
{
|
|
return new FlatUniqueKey([__ID]);
|
|
}
|
|
} |