| 133 | Scale9Sprite::~Scale9Sprite() {} |
| 134 | |
| 135 | bool Scale9Sprite::initWithFile(const Rect& capInsets, std::string_view file) |
| 136 | { |
| 137 | // calls super |
| 138 | bool ret = Sprite::initWithFile(file); |
| 139 | setupSlice9(getTexture(), capInsets); |
| 140 | return ret; |
| 141 | } |
| 142 | |
| 143 | bool Scale9Sprite::initWithFile(std::string_view filename) |
| 144 | { |
no test coverage detected