geode/loader/include/Geode/ui/BasedButton.hpp
HJfod cdaa8ad6dc add all UI-related stuff from API, including index, nodes, actual ui,
resources, md4c; and fix up some minor formatting issues
2022-08-01 18:18:03 +03:00

24 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