mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
98684a62e5
internal header & source + regex match validation for string settings + further work on settings UI now featuring a cooler reset button
24 lines
605 B
C++
24 lines
605 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
|
|
);
|
|
};
|
|
}
|