MenuService.cs 438 B

12345678910111213141516
  1. using System;
  2. namespace FF8
  3. {
  4. public sealed class MenuService : IMenuService
  5. {
  6. public Boolean IsSupported => true;
  7. public IAwaitable ShowEnterNameDialog(NamedEntity entity)
  8. {
  9. // TODO: Field script
  10. Console.WriteLine($"NotImplemented: {nameof(MenuService)}.{nameof(ShowEnterNameDialog)}({nameof(entity)}: {entity})");
  11. return DummyAwaitable.Instance;
  12. }
  13. }
  14. }