IInteractionService.cs 224 B

12345678910111213
  1. using System;
  2. namespace FF8
  3. {
  4. public interface IInteractionService
  5. {
  6. Boolean IsSupported { get; }
  7. Int32 this[ScriptResultId id] { get; set; }
  8. IAwaitable Wait(Int32 frameNumber);
  9. }
  10. }