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