PointController.cs 176 B

123456789
  1. using WS;
  2. public class PointController : Controller<PointView>
  3. {
  4. public void ShowPoint(int index, string text)
  5. {
  6. this._View.ShowPoint(index, text);
  7. }
  8. }