21 lines
371 B
C
21 lines
371 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include "player.h"
|
|
|
|
|
|
void shutdown(void) {
|
|
//Diese Methode wird von beim beenden aufgerufen.
|
|
printf("Auf Wiedersehen!\n");
|
|
}
|
|
|
|
int main(void) {
|
|
atexit(shutdown);
|
|
if (setupSoftTone() != 0) {
|
|
printf("SoftTone konnte nicht initialisiert werden.\n");
|
|
exit(0);
|
|
}
|
|
|
|
playIntro();
|
|
return 0;
|
|
}
|