| 12 | static constexpr size_t s_columns_count = 30; |
| 13 | |
| 14 | struct coordinates |
| 15 | { |
| 16 | int x{}; |
| 17 | int y{}; |
| 18 | |
| 19 | bool operator==(const coordinates& other) const = default; |
| 20 | bool operator!=(const coordinates& other) const = default; |
| 21 | }; |
| 22 | |
| 23 | using Direction = coordinates; |
| 24 | using SnakeBody = std::vector<coordinates>; |
nothing calls this directly
no outgoing calls
no test coverage detected