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.

AgVaccumSensor.cs 347B

123456789101112131415161718
  1. using uqac_ia_aspirobot.Agent.Interfaces.Sensors;
  2. namespace uqac_ia_aspirobot.Agent.FakeEnv.Sensors
  3. {
  4. public class AgVaccumSensor : IAgVaccumSensor
  5. {
  6. public int Vaccumed { get; protected set; }
  7. public void Increase()
  8. {
  9. ++Vaccumed;
  10. }
  11. public void Update()
  12. {
  13. }
  14. }
  15. }