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.

12345678910111213141516171819
  1. namespace uqac_ia_aspirobot.Interfaces
  2. {
  3. public interface IRoom
  4. {
  5. int X { get; set; }
  6. int Y { get; set; }
  7. RoomState State { get; }
  8. void AddDust();
  9. void RemoveDust();
  10. void AddJewel();
  11. void RemoveJewel();
  12. }
  13. }