Ardupilot2/Tools/Replay/VehicleType.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
170 B
C
Raw Normal View History

#pragma once
class VehicleType {
public:
enum vehicle_type {
VEHICLE_UNKNOWN,
VEHICLE_COPTER,
VEHICLE_PLANE,
VEHICLE_ROVER
};
};