Browse Source

Die Zufallszahl für y wird in einem vorgegebenen Bereich bestimmt.

main
fdai7037 2 years ago
parent
commit
2015e23667
  1. 5
      src/Paper-Bin.c

5
src/Paper-Bin.c

@ -53,6 +53,11 @@ void loadLevel() {
{ {
tmpX = rand()%17; tmpX = rand()%17;
} }
while (3 > tmpY)
{
tmpY = rand() % 10;
}
break; break;

Loading…
Cancel
Save