Fix breaking changes

This commit is contained in:
unknown 2019-07-04 14:24:08 +02:00
parent c71736792b
commit 16c2437d70
2 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ namespace spine {
void update (float deltaTime) override;
void draw (cocos2d::Renderer* renderer, const cocos2d::Mat4& transform, uint32_t transformFlags) override;
bool isAutoCulled () const override;
bool isAutoCulled () const;
cocos2d::Rect getBoundingBox () const override;
void onEnter () override;
void onExit () override;

View File

@ -99,9 +99,9 @@ class TextureLoader;
class SP_API Atlas : public SpineObject {
public:
Atlas(const String &path, TextureLoader *textureLoader, bool createTexture);
Atlas(const String &path, TextureLoader *textureLoader, bool createTexture = true);
Atlas(const char *data, int length, const char *dir, TextureLoader *textureLoader, bool createTexture);
Atlas(const char *data, int length, const char *dir, TextureLoader *textureLoader, bool createTexture = true);
~Atlas();