IJsmControl.cs 248 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace OpenVIII.Fields.Scripts
  4. {
  5. public static partial class Jsm
  6. {
  7. public interface IJsmControl
  8. {
  9. IEnumerable<Segment> EnumerateSegments();
  10. }
  11. }
  12. }