added code from fusion2016
This commit is contained in:
17
code/lukas/StepObservation.h
Executable file
17
code/lukas/StepObservation.h
Executable file
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user