Neodroid  0.2.0
Machine Learning Environment Prototyping Tool
IObserver.cs
Go to the documentation of this file.
1 using System.Collections.Generic;
2 
3 namespace droid.Runtime.Interfaces {
7  public interface IObserver : IRegisterable {
10  IEnumerable<float> FloatEnumerable { get; }
11 
14  void UpdateObservation();
15 
18  void EnvironmentReset();
19  }
20 }