Untitled
Anonymous
plain_text
08/26/2024 7:38 AM
276 B
21
Indexable
#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];
};Editor is loading...
Leave a Comment