6 lines
132 B
C++
6 lines
132 B
C++
struct cell_offset
|
|
{
|
|
static constexpr int32_t x = (320 - 160) / (2 * 8);
|
|
static constexpr int32_t y = (240 - 144) / (2 * 8);
|
|
};
|