aboutsummaryrefslogtreecommitdiff
path: root/src/waypoint.hh
blob: f304ead41944bbf1a0bfdf0c480b9309c6528756 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef WAYPOINT_HH
#define WAYPOINT_HH

#include <QVector3D>
#include <QJsonObject>


struct Waypoint {
	int frame;
	QVector3D pos;
	double computed_speed = 0;

	Waypoint(unsigned frame, QVector3D pos);
	Waypoint(const QJsonObject &json);
};


#endif