Set the mouse cursor used while waiting for input for the button. */
| 140 | |
| 141 | /** Set the mouse cursor used while waiting for input for the button. */ |
| 142 | void StoryPageButtonData::SetCursor(StoryPageButtonCursor cursor) |
| 143 | { |
| 144 | assert(cursor < SPBC_END); |
| 145 | SB(this->referenced_id, 8, 8, cursor); |
| 146 | } |
| 147 | |
| 148 | /** Set the type of vehicles that are accepted by the button */ |
| 149 | void StoryPageButtonData::SetVehicleType(VehicleType vehtype) |
no test coverage detected