DU CODE Snake Competition
 
Loading...
Searching...
No Matches
cell.h
Go to the documentation of this file.
1
3
4#pragma once
5
9enum Cell {
10 EMPTY,
11 FRUIT,
12 PLAYER_ONE,
13 PLAYER_ONE_HEAD,
14 PLAYER_TWO,
15 PLAYER_TWO_HEAD
16};
Cell
Represents every cell on a Grid. Cell is returned by Grid::get.
Definition cell.h:9