IHM.cs 122 B

123456789
  1. using System;
  2. namespace NeuralNetworkPCL
  3. {
  4. public interface IHM
  5. {
  6. void PrintMsg(String _msg);
  7. }
  8. }