Set the button background colour. */
| 128 | |
| 129 | /** Set the button background colour. */ |
| 130 | void StoryPageButtonData::SetColour(Colours button_colour) |
| 131 | { |
| 132 | assert(button_colour < COLOUR_END); |
| 133 | SB(this->referenced_id, 0, 8, button_colour); |
| 134 | } |
| 135 | |
| 136 | void StoryPageButtonData::SetFlags(StoryPageButtonFlags flags) |
| 137 | { |
no test coverage detected