IGlobalVariableService.cs 265 B

123456789101112
  1. using System;
  2. namespace FF8
  3. {
  4. public interface IGlobalVariableService
  5. {
  6. Boolean IsSupported { get; }
  7. T Get<T>(GlobalVariableId<T> id) where T : unmanaged;
  8. void Set<T>(GlobalVariableId<T> id, T value) where T : unmanaged;
  9. }
  10. }