You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }