mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-09 09:28:31 -04:00
12 lines
312 B
C++
12 lines
312 B
C++
#include "Copter.h"
|
|
|
|
#if MODE_GUIDED_ENABLED && AP_SCRIPTING_ENABLED
|
|
// constructor registers custom number and names
|
|
ModeGuidedCustom::ModeGuidedCustom(const Number _number, const char* _full_name, const char* _short_name):
|
|
number(_number),
|
|
full_name(_full_name),
|
|
short_name(_short_name)
|
|
{
|
|
}
|
|
#endif
|