mirror of
https://github.com/geode-sdk/geode.git
synced 2024-12-03 04:36:55 -05:00
25 lines
624 B
C++
25 lines
624 B
C++
|
#pragma once
|
||
|
|
||
|
#include "BasedButtonSprite.hpp"
|
||
|
|
||
|
#pragma warning(disable : 4275)
|
||
|
|
||
|
namespace geode {
|
||
|
class GEODE_DLL TabButton : public CCMenuItemToggler {
|
||
|
public:
|
||
|
static TabButton* create(
|
||
|
TabBaseColor unselected,
|
||
|
TabBaseColor selected,
|
||
|
const char* text,
|
||
|
cocos2d::CCObject* target,
|
||
|
cocos2d::SEL_MenuHandler callback
|
||
|
);
|
||
|
|
||
|
static TabButton* create(
|
||
|
const char* text,
|
||
|
cocos2d::CCObject* target,
|
||
|
cocos2d::SEL_MenuHandler callback
|
||
|
);
|
||
|
};
|
||
|
} // namespace geode
|