4-gewinnt  1.0.0
Klassiker "4-gewinnt" als Konsolenanwendung
 Alle Datenstrukturen Dateien Funktionen Variablen Makrodefinitionen Seiten
credits.c
gehe zur Dokumentation dieser Datei
1 #pragma once
2 
6 void showCredits() {
7  animateBox(25,8,66,17);
8  startBuffer(66);
9  setLineAlign(0);
10  output("____ ____ ____ ___ _ ___ ____ \n| |__/ |___ | \\ | | [__ \n|___ | \\ |___ |__/ | | ___] \n\n");
11  setLineAlign(-1);
12  output(" Niko Berkmann | @n2code\n n2code@users.noreply.github.com\n");
13  setLineAlign(+1);
14  output("Steffen Wagner | @wagnst \nmail@wagnst.de \n");
15  setLineAlign(-1);
16  output(" Marvin Klose | @marvinklose\n marvinklose@gmx.net\n");
17  setLineAlign(+1);
18  output("Michael Wieneke | @momoxd \nmail@momoxd.de \n");
19  setLineAlign(-1);
20  output(" Inga Miadowicz | @IngaMiad\n inga.miadowicz@gmx.de\n");
21  setLineAlign(0);
22  output("\nPress any key to return to main menu.\n");
23  flushBuffer();
24  getch();
25  animateBox(66,17,25,8);
26 }
void animateBox(int wFrom, int hFrom, int wTo, int hTo)
Definition: system.c:392
void setLineAlign(int align)
Definition: system.c:344
void flushBuffer()
Definition: system.c:188
void startBuffer(int maxTextLength)
Definition: system.c:319
void showCredits()
Definition: credits.c:6
int output(const char *input,...)
Definition: system.c:144