Курсовая работа: Сапер
}
// // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // // /
bool CMyCellBomb:: isBomb() const // есть ли это бомба
{
return true;
}
Myfield. h
#ifndef MYFIELD_H_
#define MYFIELD_H_
#include "mycell. h"
classMyField // класс поле, класс-контейнер
{
public:
MyField();
~MyField(); // деструктор
int GetCols() const; // значение колонок
int GetRows() const; // значение строк
int GetBombsCount() const; // количество бомб
int GetFindBombsCount() const; // количество найденных бомб вокруг ячейки
// устанавливаем значения
void SetCols(int c);
void SetRows(int r);
void SetBombsCount(int kol);
void SetFindBombsCount(int kol);
// установка ячеек по индексу
CMyCell * GetCellByIndex(int i, int j);
CPMyCell * GetPCellByIndex(int i, int j);
void SetCellByIndex(int i, int j, CMyCell * cell);
void Init(int cs, int rs, int kb); // инициализация