2025-05-01 01:48:08 -07:00

15 lines
360 B
C#

namespace UnityEngine.Localization.Tables
{
/// <summary>
/// Provides a way to generate unique Id values for table entries.
/// </summary>
public interface IKeyGenerator
{
/// <summary>
/// Return the next Id value that can be used.
/// </summary>
/// <returns></returns>
long GetNextKey();
}
}