diff --git a/src/Paper-Bin.c b/src/Paper-Bin.c index 09f5cfd..3c35d0f 100644 --- a/src/Paper-Bin.c +++ b/src/Paper-Bin.c @@ -91,6 +91,20 @@ void getStartPosition() } +void clearField() +{ + int fieldWidth = 25; + int fieldHeigth = 30; + + for (int i = 0; i <= fieldWidth; i++) + { + for (int j = 0; j <= fieldHeigth; j++) + { + field[i][j] = ' '; + } + } +} + void Generatefield() { }