diff --git a/src/Paper-Bin.c b/src/Paper-Bin.c index 76d9778..5d4b546 100644 --- a/src/Paper-Bin.c +++ b/src/Paper-Bin.c @@ -53,3 +53,17 @@ int main() return 0; } +void getStartPosition() +{ + int Ballx; + int Bally; + + while (Bally == -1) + { + for (int i = 2, j = 0; i <= 15; i += 2, j++) + { + field[i][Bally] = j + '0'; + } + } +} +