Get the mouse cursor used while waiting for input for the button. */
| 167 | |
| 168 | /** Get the mouse cursor used while waiting for input for the button. */ |
| 169 | StoryPageButtonCursor StoryPageButtonData::GetCursor() const |
| 170 | { |
| 171 | StoryPageButtonCursor cursor = (StoryPageButtonCursor)GB(this->referenced_id, 8, 8); |
| 172 | if (!IsValidStoryPageButtonCursor(cursor)) return INVALID_SPBC; |
| 173 | return cursor; |
| 174 | } |
| 175 | |
| 176 | /** Get the type of vehicles that are accepted by the button */ |
| 177 | VehicleType StoryPageButtonData::GetVehicleType() const |
no test coverage detected