20 lines
482 B
C++
20 lines
482 B
C++
#ifndef INSTRUCTIONSVISUALIZER_HPP
|
|
#define INSTRUCTIONSVISUALIZER_HPP
|
|
|
|
#include "BaseVisualizer.hpp"
|
|
|
|
class InstructionsVisualizer : public BaseVisualizer {
|
|
private:
|
|
inline static const std::vector<std::string> menuContent = {
|
|
"Hier kommt noch eine Anleitung"
|
|
};
|
|
void GenerateElement() override;
|
|
|
|
public:
|
|
InstructionsVisualizer() : BaseVisualizer(60, 4) {
|
|
InstructionsVisualizer::GenerateElement();
|
|
};
|
|
};
|
|
|
|
#endif //INSTRUCTIONSVISUALIZER_HPP
|