| 199 | }; |
| 200 | |
| 201 | SpriteInGroupCommand* SpriteInGroupCommand::create(std::string_view filename) |
| 202 | { |
| 203 | SpriteInGroupCommand* sprite = new SpriteInGroupCommand(); |
| 204 | sprite->initWithFile(filename); |
| 205 | sprite->autorelease(); |
| 206 | return sprite; |
| 207 | } |
| 208 | |
| 209 | void SpriteInGroupCommand::draw(Renderer* renderer, const Mat4& transform, uint32_t flags) |
| 210 | { |
nothing calls this directly
no test coverage detected