Skip to content

Commit

Permalink
names
Browse files Browse the repository at this point in the history
  • Loading branch information
briaguya-ai committed Feb 4, 2025
1 parent b943111 commit d5418df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions soh/soh/ShipInit.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,16 @@ struct ShipInit {
* static RegisterShipInitFunc foo(bar);
* ```
*
* #### Run function `funcBar` on boot and when the CVar `cvarBar` might have changed
* #### Run function `bar` on boot and when the CVar `baz` might have changed
*
* ```cpp
* static RegisterShipInitFunc foo(funcBar, { "cvarBar" });
* static RegisterShipInitFunc foo(bar, { "baz" });
* ```
*
* #### Run function `randoBar` on boot and when `IS_RANDO` might have changed
* #### Run function `bar` on boot and when `IS_RANDO` might have changed
*
* ```cpp
* static RegisterShipInitFunc foo(randoBar, { "IS_RANDO" });
* static RegisterShipInitFunc foo(bar, { "IS_RANDO" });
* ```
*
* ### Additional Information:
Expand Down

0 comments on commit d5418df

Please sign in to comment.