mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-02 18:52:12 +01:00
21 lines
410 B
C++
21 lines
410 B
C++
#ifndef OPMAP_CONTROL_H_
|
|
#define OPMAP_CONTROL_H_
|
|
#include "src/mapwidget/opmapwidget.h"
|
|
namespace mapcontrol
|
|
{
|
|
struct customData
|
|
{
|
|
float velocity;
|
|
int mode;
|
|
float mode_params[4];
|
|
int condition;
|
|
float condition_params[4];
|
|
int command;
|
|
int jumpdestination;
|
|
int errordestination;
|
|
};
|
|
|
|
}
|
|
Q_DECLARE_METATYPE(mapcontrol::customData)
|
|
#endif
|