You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
395 B

  1. //Importiere wichtige Bibliotheken
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4. //Definiere Feldgröße
  5. #define ROWS 6
  6. #define COLS 7
  7. // Definiere Farben
  8. #define RESET_COLOR "\033[0m"
  9. #define BLACK "\033[0;30m"
  10. #define RED "\033[0;31m"
  11. #define GREEN "\033[0;32m"
  12. #define YELLOW "\033[0;33m"
  13. #define BLUE "\033[0;34m"
  14. #define MAGENTA "\033[0;35m"
  15. #define CYAN "\033[0;36m"
  16. #define WHITE "\033[0;37m"