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

#include <QVector3D>
#include <QJsonObject>


struct Waypoint {
	int frame;
	QVector3D pos;

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


#endif