You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef INFO_H
|
|
#define INFO_H
|
|
|
|
#include<std_msgs/String.h>
|
|
|
|
typedef struct flight_INFO
|
|
{
|
|
std::string type, //type include drone's formation. ex: V , X ,| ......
|
|
mission; //The mission is what we want the drone to do.
|
|
}INFO;
|
|
|
|
|
|
|
|
#endif //INFO_H
|