Skip to content

Commit

Permalink
getExtraKerning and setExtraKerning
Browse files Browse the repository at this point in the history
  • Loading branch information
hiimjustin000 authored Sep 21, 2024
1 parent 0eb6ed8 commit bdacc8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loader/include/Geode/cocos/label_nodes/CCLabelBMFont.h
Original file line number Diff line number Diff line change
Expand Up @@ -274,9 +274,9 @@ class CC_DLL CCLabelBMFont : public CCSpriteBatchNode, public CCLabelProtocol, p
void limitLabelWidth(float width, float defaultScale, float minScale);

// @note RobTop Addition
int getExtraKerning() const;
inline int getExtraKerning() const { return m_nExtraKerning; }
// @note RobTop Addition
void setExtraKerning(int);
inline void setExtraKerning(int extraKerning) { m_nExtraKerning = extraKerning; }

// @note RobTop Addition
bool getIsBatched() const;
Expand Down

0 comments on commit bdacc8b

Please sign in to comment.