Intitial commit
This commit is contained in:
20
main.c
Normal file
20
main.c
Normal 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;
|
||||
}
|
Reference in New Issue
Block a user