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 212B

123456789101112
  1. namespace uqac_ia_aspirobot.Agent
  2. {
  3. public class AgVaccumSensor
  4. {
  5. public int Vaccumed { get; protected set; }
  6. public void Increase()
  7. {
  8. ++Vaccumed;
  9. }
  10. }
  11. }