16 lines
339 B
C++
16 lines
339 B
C++
/**
|
|
* @file menuManualDrive.cpp
|
|
* @author Alexander Klein (alex@kleiax.de)
|
|
* @brief Contains an implementation of the class MenuManualDrive
|
|
* @version 0.1
|
|
* @date 2022-01-20
|
|
*
|
|
* @copyright Copyright (c) 2022
|
|
*
|
|
*/
|
|
#include "menuManualDrive.h"
|
|
|
|
void MenuManualControl::printMenu() {
|
|
this->print("Now you can", "drive. :)");
|
|
}
|