您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

IEnvironment.cs 345B

123456789101112131415161718192021222324
  1. using System;
  2. namespace uqac_ia_aspirobot.Interfaces
  3. {
  4. [Flags]
  5. public enum RoomState
  6. {
  7. Unknown = -1,
  8. Clean = 0,
  9. Dust = 1,
  10. Jewel = 2
  11. }
  12. public interface IEnvironment
  13. {
  14. void Setup();
  15. int GetWidth();
  16. int GetHeight();
  17. IRoom GetRoom(int x, int y);
  18. }
  19. }