BareGit
#include "engine_worker.hpp"

#include <cstdio>

namespace nethack_mcp
{

int runEngineWorker([[maybe_unused]] int argc,
                    [[maybe_unused]] char* argv[])
{
    std::fputs("this build does not include the NetHack engine\n", stderr);
    return 2;
}

} // namespace nethack_mcp