Sets the value in the placement reserve array
| 126 | |
| 127 | // Sets the value in the placement reserve array |
| 128 | void setValue(int x, int y, unsigned char value) |
| 129 | { |
| 130 | if ( isValidPos(x,y) ) |
| 131 | data[y][x] = value; |
| 132 | }; |
| 133 | void setValue(TilePosition p, unsigned char value) |
| 134 | { |
| 135 | this->setValue(p.x,p.y,value); |
no outgoing calls
no test coverage detected