#include "cell.h" Cell::Cell(int x, int y) { m_x = x; m_y = y; } int Cell::x() { return m_x; } int Cell::y() { return m_y; }