ServerCore/Command.cpp
2023-06-19 23:22:46 +00:00

19 lines
341 B
C++

#include "Command.h"
#include "CommandList.h"
#include "Log.h"
namespace core
{
int Command::processCommand(coreutils::ZString &request, TCPSession &session)
{
return 0;
}
void Command::output(std::stringstream &out)
{
out << "Write your own command description here for the help system." << std::endl;
}
}