/** @brief stores the cases produced from image */ class CaseMap { public: int* cases; int width; //!< width of image in cases int height; //!< height of image in cases CaseMap(int width, int height, int* cases); int get_case(int x,int y); };