Definition at line 43 of file tile2x2.h.
43 {
44 uint8_t max = 0;
45 max =
MAX(max,
at(0, 0));
46 max =
MAX(max,
at(0, 1));
47 max =
MAX(max,
at(1, 0));
48 max =
MAX(max,
at(1, 1));
49 return max;
50 }
uint8_t & at(int x, int y)
References at(), and MAX.