| 700 | } |
| 701 | |
| 702 | bool Game_Map::IsValid(int x, int y) { |
| 703 | return (x >= 0 && x < GetTilesX() && y >= 0 && y < GetTilesY()); |
| 704 | } |
| 705 | |
| 706 | static int GetPassableMask(int old_x, int old_y, int new_x, int new_y) { |
| 707 | int bit = 0; |
no outgoing calls
no test coverage detected