IScriptExecuter.cs 165 B

123456789
  1. using System.Collections.Generic;
  2. namespace FF8
  3. {
  4. public interface IScriptExecuter
  5. {
  6. IEnumerable<IAwaitable> Execute(IServices services);
  7. }
  8. }