Intitial commit

This commit is contained in:
2016-09-11 12:46:39 +02:00
parent 16458cae5c
commit a8ca0acd0b
5 changed files with 237 additions and 0 deletions

20
main.c Normal file
View File

@@ -0,0 +1,20 @@
#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;
}