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.

AgBatterySensor.cs 265B

123456789101112131415
  1. namespace uqac_ia_aspirobot.Agent
  2. {
  3. public class AgBatterySensor
  4. {
  5. public int Spent { get; protected set; }
  6. public void Add(int v)
  7. {
  8. if (v > 0)
  9. {
  10. Spent += v;
  11. }
  12. }
  13. }
  14. }