mirror of
https://github.com/shavitush/bhoptimer.git
synced 2025-12-07 10:28:26 +00:00
lowercase parameters in shavit.inc
This commit is contained in:
parent
0e5eef338d
commit
020a218fa6
@ -858,11 +858,11 @@ forward void Shavit_OnReplaysLoaded();
|
|||||||
* @param avgvel Player's average velocity throughout the run.
|
* @param avgvel Player's average velocity throughout the run.
|
||||||
* @param maxvel Player's highest reached velocity.
|
* @param maxvel Player's highest reached velocity.
|
||||||
* @param timestamp System time of when player finished.
|
* @param timestamp System time of when player finished.
|
||||||
* @param isWR If the time is the new WR.
|
* @param iswr If the time is the new WR.
|
||||||
* @param isTooLong If the time is too long to save a replay if the time is a WR.
|
* @param istoolong If the time is too long to save a replay if the time is a WR.
|
||||||
* @return Return Plugin_Changed (or higher) to cause a copy of the replay to be saved. Return Plugin_Continue otherwise.
|
* @return Return Plugin_Changed (or higher) to cause a copy of the replay to be saved. Return Plugin_Continue otherwise.
|
||||||
*/
|
*/
|
||||||
forward Action Shavit_ShouldSaveReplayCopy(int client, int style, float time, int jumps, int strafes, float sync, int track, float oldtime, float perfs, float avgvel, float maxvel, int timestamp, bool isWR, bool isTooLong);
|
forward Action Shavit_ShouldSaveReplayCopy(int client, int style, float time, int jumps, int strafes, float sync, int track, float oldtime, float perfs, float avgvel, float maxvel, int timestamp, bool iswr, bool istoolong);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called when either a WR replay or a copy of a replay has been saved.
|
* Called when either a WR replay or a copy of a replay has been saved.
|
||||||
@ -879,13 +879,13 @@ forward Action Shavit_ShouldSaveReplayCopy(int client, int style, float time, in
|
|||||||
* @param avgvel Player's average velocity throughout the run.
|
* @param avgvel Player's average velocity throughout the run.
|
||||||
* @param maxvel Player's highest reached velocity.
|
* @param maxvel Player's highest reached velocity.
|
||||||
* @param timestamp System time of when player finished.
|
* @param timestamp System time of when player finished.
|
||||||
* @param isWR If the time is the new WR.
|
* @param iswr If the time is the new WR.
|
||||||
* @param isTooLong If the time is too long to save a replay if the time is a WR.
|
* @param istoolong If the time is too long to save a replay if the time is a WR.
|
||||||
* @param isCopy If the path points to a copy of the replay.
|
* @param iscopy If the path points to a copy of the replay.
|
||||||
* @param sPath Path to the saved replay.
|
* @param replaypath Path to the saved replay.
|
||||||
* @noreturn
|
* @noreturn
|
||||||
*/
|
*/
|
||||||
forward void Shavit_OnReplaySaved(int client, int style, float time, int jumps, int strafes, float sync, int track, float oldtime, float perfs, float avgvel, float maxvel, int timestamp, bool isWR, bool isTooLong, bool isCopy, const char[] sPath);
|
forward void Shavit_OnReplaySaved(int client, int style, float time, int jumps, int strafes, float sync, int track, float oldtime, float perfs, float avgvel, float maxvel, int timestamp, bool iswr, bool istoolong, bool iscopy, const char[] replaypath);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called when top left HUD updates.
|
* Called when top left HUD updates.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user