Skip to content

Commit

Permalink
PART ONE
Browse files Browse the repository at this point in the history
  • Loading branch information
bruhmoent authored Nov 25, 2024
1 parent 225048f commit 9259152
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/object/player.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,12 +381,12 @@ class Player final : public MovingObject
* @scripting
* @description Enables Tux's fancy idle animations.
*/
inline void enable_fancy_idling();
inline void enable_fancy_idling() { m_should_fancy_idle = true; }
/**
* @scripting
* @description Disables Tux's fancy idle animations.
*/
inline void disable_fancy_idling();
inline void disable_fancy_idling() { m_should_fancy_idle = false; }

/**
* @scripting
Expand Down

0 comments on commit 9259152

Please sign in to comment.