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

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