6 lines
89 B
C#
6 lines
89 B
C#
|
namespace LootDumpProcessor.Storage;
|
|||
|
|
|||
|
public interface IKeyable
|
|||
|
{
|
|||
|
IKey GetKey();
|
|||
|
}
|