@@ -937,7 +937,7 @@ class ButtonSprite : cocos2d::CCSprite {
937937 /// @param texture The name of the background sprite file (can't be in a spritesheet)
938938 /// @param height The height of the button, leave 0 for automatic
939939 /// @param scale Scale of top sprite
940- static ButtonSprite* create(cocos2d::CCSprite* topSprite, int width, bool absolute, float height, const char* texture, float scale) = imac 0x91d90 {
940+ static ButtonSprite* create(cocos2d::CCSprite* topSprite, int width, bool absolute, float height, const char* texture, float scale) {
941941 return create(topSprite, width, 0, height, scale, absolute, texture, true);
942942 }
943943
@@ -954,7 +954,7 @@ class ButtonSprite : cocos2d::CCSprite {
954954 return create(caption, width, 0, scale, absolute, font, texture, height);
955955 }
956956
957- static ButtonSprite* create(char const* caption) = imac 0x925c0 {
957+ static ButtonSprite* create(char const* caption) {
958958 return ButtonSprite::create(caption, 0, false, "goldFont.fnt", "GJ_button_01.png", .0f, 1.f);
959959 }
960960 static ButtonSprite* create(char const* caption, const char* font, const char* texture) {
@@ -964,19 +964,19 @@ class ButtonSprite : cocos2d::CCSprite {
964964 return ButtonSprite::create(caption, 0, false, font, texture, .0f, scale);
965965 }
966966
967- static ButtonSprite* create(char const* caption, float scale) = imac 0x92610 {
967+ static ButtonSprite* create(char const* caption, float scale) {
968968 return ButtonSprite::create(caption, 0, false, "goldFont.fnt", "GJ_button_01.png", .0f, scale);
969969 }
970- static ButtonSprite* create(char const* caption, int width, int p2, float scale, bool absolute, char const* font, char const* bg) = imac 0x92780 {
970+ static ButtonSprite* create(char const* caption, int width, int p2, float scale, bool absolute, char const* font, char const* bg) {
971971 return ButtonSprite::create(caption, width, p2, scale, absolute, font, bg, .0f);
972972 }
973- static ButtonSprite* create(char const* caption, int width, int p2, float scale, bool absolute) = imac 0x925f0 {
973+ static ButtonSprite* create(char const* caption, int width, int p2, float scale, bool absolute) {
974974 return ButtonSprite::create(caption, width, p2, scale, absolute, "goldFont.fnt", "GJ_button_01.png", .0f);
975975 }
976- static ButtonSprite* create(cocos2d::CCSprite* topSprite, int width, int unused, float height, float scale, bool absolute) = imac 0x91d90 {
976+ static ButtonSprite* create(cocos2d::CCSprite* topSprite, int width, int unused, float height, float scale, bool absolute) {
977977 return ButtonSprite::create(topSprite, width, unused, height, scale, absolute, "GJ_button_01.png", false);
978978 }
979- static ButtonSprite* create(cocos2d::CCSprite* topSprite) = imac 0x91d60 {
979+ static ButtonSprite* create(cocos2d::CCSprite* topSprite) {
980980 return ButtonSprite::create(topSprite, 0, 0, .0f, 1.f, false, "GJ_button_01.png", false);
981981 }
982982
0 commit comments