Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
BestiaryUnlockProgressReport.cs
Go to the documentation of this file.
1
namespace
Terraria.GameContent.Bestiary
;
2
3
public
struct
BestiaryUnlockProgressReport
4
{
5
public
int
EntriesTotal
;
6
7
public
float
CompletionAmountTotal
;
8
9
public
float
CompletionPercent
10
{
11
get
12
{
13
if
(
EntriesTotal
== 0)
14
{
15
return
1f;
16
}
17
return
CompletionAmountTotal
/ (float)
EntriesTotal
;
18
}
19
}
20
}
Terraria.GameContent.Bestiary
Definition
BestiaryDatabase.cs:5
Terraria.GameContent.Bestiary.BestiaryUnlockProgressReport.EntriesTotal
int EntriesTotal
Definition
BestiaryUnlockProgressReport.cs:5
Terraria.GameContent.Bestiary.BestiaryUnlockProgressReport.CompletionPercent
float CompletionPercent
Definition
BestiaryUnlockProgressReport.cs:10
Terraria.GameContent.Bestiary.BestiaryUnlockProgressReport.CompletionAmountTotal
float CompletionAmountTotal
Definition
BestiaryUnlockProgressReport.cs:7
Terraria.GameContent.Bestiary.BestiaryUnlockProgressReport
Definition
BestiaryUnlockProgressReport.cs:4
source
Terraria.GameContent.Bestiary
BestiaryUnlockProgressReport.cs
Generated by
1.10.0