Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
AccumulateGolfingScore()
void
Terraria.Player.AccumulateGolfingScore
(
int
score
)
inline
Definition at line
4001
of file
Player.cs
.
4002
{
4003
int
num =
score
;
4004
if
(
golferScoreAccumulated
+ num > 1000000000)
4005
{
4006
num = 1000000000 -
golferScoreAccumulated
;
4007
}
4008
golferScoreAccumulated
+= num;
4009
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
Terraria.Player.golferScoreAccumulated
int golferScoreAccumulated
Definition
Player.cs:1545
References
Terraria.Player.golferScoreAccumulated
.
Terraria
Player
Generated by
1.10.0