ConsoleEditor.h 218 B

123456789101112
  1. #ifndef COMMANDEDITOR_H
  2. #define COMMANDEDITOR_H
  3. #include "server/commands/CommandTypes.h"
  4. namespace ConsoleEditor {
  5. void clearPrintLine();
  6. void printLine();
  7. bool readCommand(RawCommand& buffer);
  8. }
  9. #endif