1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 04:05:49 +01:00

Updated Coding style (markdown)

wolfreak99
2017-01-06 08:28:21 -05:00
parent ac1d041767
commit b30b27796d

@@ -34,8 +34,9 @@ static int _nextGuestIndex;
/// Local function declarations
rct_peep *example_get_last_guest();
/// All functions should be prefixed with the name of the source file followed by '_'. In this
/// case 'example_'. The name of the function should be lower case with underscores for spaces.
/// All functions should be prefixed with the name of the source file followed
/// by '_'. In this case 'example_'. The name of the function should be lower
/// case with underscores for spaces.
/// Only local functions need documentation (javadoc style)
/// Global functions should have their documentation in the header file.