Untitled
unknown
plain_text
a year ago
206 B
12
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