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.
19 lines
445 B
19 lines
445 B
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include "Moving.h"
|
|
#include "Schachbrett.h"
|
|
#include "Spieler.h"
|
|
#include "Tutorial.h"
|
|
#include "Misc.h"
|
|
#include "Input.h"
|
|
// Nach einem Tutorial fragen
|
|
void nach_Tutorial_fragen(int runden_zaehler){
|
|
char * abfrage;
|
|
printf("Do you need a Tutorial?\nY ?\nN ?\n");
|
|
abfrage = getUserInput();
|
|
if (abfrage == 'Y'){
|
|
// Regelwerk ausgeben
|
|
} else {
|
|
printf("Have fun and good Luck!!\n");
|
|
}
|
|
}
|