Skip to content

Commit

Permalink
Minor text fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOnlyZac committed Nov 25, 2024
1 parent 05acf09 commit ae24f12
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
14 changes: 12 additions & 2 deletions include/jt.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,16 @@ enum JTBS
JTBS_Zap_Water = 36
};

/**
* JT cane state.
*
* @note Copied from May proto, may be outdated/out of order.
*/
enum JTCS
{
// ...
};

/**
* @brief Sly entity.
*
Expand Down Expand Up @@ -115,8 +125,8 @@ void SetJtJts(JT *pjt, JTS jts, JTBS jtbs);
*
* @deprecated
*/
void ProfileJt(JT* pjt, int fProfile);
void ProfileJt(JT *pjt, int fProfile);

extern JT* g_pjt;
extern JT *g_pjt;

#endif // JT_H
18 changes: 9 additions & 9 deletions include/steppower.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
*/
enum FSP
{
FSP_Nil=-1,
FSP_Dive=0,
FSP_Ball=1,
FSP_SlowDownClock=2,
FSP_Mine=3,
FSP_SpeedUpClock=4,
FSP_Decoy=5,
FSP_Stun=6,
FSP_Max=7
FSP_Nil = -1,
FSP_Dive = 0,
FSP_Ball = 1,
FSP_SlowDownClock = 2,
FSP_Mine = 3,
FSP_SpeedUpClock = 4,
FSP_Decoy = 5,
FSP_Stun = 6,
FSP_Max = 7
};

extern FSP g_fsp;
Expand Down

0 comments on commit ae24f12

Please sign in to comment.