summaryrefslogtreecommitdiffstats
path: root/GameField.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'GameField.hpp')
-rw-r--r--GameField.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/GameField.hpp b/GameField.hpp
index d312644..9975caa 100644
--- a/GameField.hpp
+++ b/GameField.hpp
@@ -28,9 +28,9 @@ public:
void Move(int y, int x);
private:
- void UpdateState();
- int ScanRows();
- int ScanCols();
+ void UpdateState(int y, int x);
+ int ScanRowsAround(int y, int x);
+ int ScanColsAround(int y, int x);
int ScanDiags();
};