Files
kte/HelpText.h
2026-02-17 13:44:36 -08:00

14 lines
341 B
C++

/*
* HelpText.h - embedded/customizable help content
*/
#pragma once
#include <string>
class HelpText {
public:
// Returns the embedded help text as a single string with newlines.
// Project maintainers can customize the returned string below
// (in HelpText.cc) without touching the help command logic.
static std::string Text();
};