summaryrefslogtreecommitdiff
path: root/src/cell.cc
blob: c5af93391f04d46f5ba56bec527e5a9935642e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#include "cell.h"

Cell::Cell()
{
	cell_value = 0;
}
	
void Cell::set_value(int value)
{
	cell_value = value;
}