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.

AgPickedSensor.cs 343B

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