Untitled

mail@pastecode.io avatar
unknown
plain_text
24 days ago
206 B
1
Indexable
Never
#pragma once

class Field {
public:
    Field();
    void clear();
    void updateField(int field[][10]);
    void checkLines(int& score);
    int getField(int x, int y);

private:
    int field[23][10];
};
Leave a Comment