Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
Napoleon - console.h

console.h

Caricato da: Crybot
Scarica il programma completo

  1. #ifndef CONSOLE_H
  2. #define CONSOLE_H
  3. #include <string>
  4.  
  5. namespace Console
  6. {
  7.     const std::string Green = "\e[32m";
  8.     const std::string Red = "\e[31m";
  9.     const std::string Yellow = "\e[33m";
  10.     const std::string Reset = "\e[m";
  11. }
  12.  
  13. #endif // CONSOLE_H