started working on eval-graphics ned helper methods tested some new aspects some fixes and changes added some graphics new test-floorplan many cleanups
18 lines
225 B
C
Executable File
18 lines
225 B
C
Executable File
#ifndef STEPOBSERVATION_H
|
|
#define STEPOBSERVATION_H
|
|
|
|
struct StepObservation {
|
|
|
|
float ts;
|
|
|
|
int steps = 0;
|
|
|
|
StepObservation() {;}
|
|
|
|
StepObservation(const float ts) : ts(ts), steps(0) {;}
|
|
|
|
};
|
|
|
|
|
|
#endif // STEPOBSERVATION_H
|