using System; namespace FF8 { public interface IGlobalVariableService { Boolean IsSupported { get; } T Get<T>(GlobalVariableId<T> id) where T : unmanaged; void Set<T>(GlobalVariableId<T> id, T value) where T : unmanaged; } }