Browse Source

Struct Player angelegt

main
fdai7103 2 years ago
parent
commit
a31aa9554b
  1. 7
      src/Paper-Bin.c

7
src/Paper-Bin.c

@ -12,6 +12,13 @@ int Bally = 27;
int fieldWidth = 25;
int fieldHeigth = 30;
struct Player
{
char Name[50];
int Points;
}playerlist[11];
void buildBin(int width, int heigth){
field[width][heigth] = 'V';
field[width+1][heigth+1] = '\\';

Loading…
Cancel
Save