IHM.cs 128 B

12345678
  1. 
  2. namespace PathfindingPCL
  3. {
  4. public interface IHM
  5. {
  6. void PrintResult(string _path, double _distance);
  7. }
  8. }