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.

AgDustSensor.cs 389B

12345678910111213141516171819
  1. using uqac_ia_aspirobot.Interfaces;
  2. namespace uqac_ia_aspirobot.Agent
  3. {
  4. public class AgDustSensor
  5. {
  6. private readonly AgEnvironment _environment;
  7. public AgDustSensor(IEnvironment environment)
  8. {
  9. _environment = environment as AgEnvironment;
  10. }
  11. public void Update()
  12. {
  13. _environment.Update();
  14. }
  15. }
  16. }