您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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