mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 22:26:35 +00:00
12 lines
196 B
C++
12 lines
196 B
C++
#include <QCoreApplication>
|
|
#include "remoteControl.hpp"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
|
|
RemoteControl::sendData(200, 200, 400, 400);
|
|
|
|
return 0;
|
|
}
|