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