Added javadoc comments to staff functions
This commit is contained in:
@@ -1,4 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
/**
|
||||
* @brief Used to increase the maximum staff volume
|
||||
*
|
||||
* @param maxVolume Pointer to the variable used to keep track of staff volume
|
||||
*/
|
||||
void staffVolumeUp(int *maxVolume);
|
||||
|
||||
/**
|
||||
* @brief Used to decrease the maximum staff volume. If the max volume is set lower than what the current user volume is, then the user volume will also be lowered.
|
||||
*
|
||||
* @param maxVolume Variable used to keep track of the max volume
|
||||
* @param userVolume Pointer to the variable used to keep track of the user volume
|
||||
* @param oldUserVolume Pointer to the variable used to keep track of the user volume when in mute or lowered
|
||||
*/
|
||||
void staffVolumeDown(int maxVolume, int *userVolume, int *oldUserVolume);
|
||||
Reference in New Issue
Block a user