| 255 | } |
| 256 | |
| 257 | void Button::loadTextures(std::string_view normal, |
| 258 | std::string_view selected, |
| 259 | std::string_view disabled, |
| 260 | TextureResType texType) |
| 261 | { |
| 262 | loadTextureNormal(normal, texType); |
| 263 | loadTexturePressed(selected, texType); |
| 264 | loadTextureDisabled(disabled, texType); |
| 265 | } |
| 266 | |
| 267 | void Button::loadTextureNormal(std::string_view normal, TextureResType texType) |
| 268 | { |
no outgoing calls