1
0
mirror of synced 2024-11-24 15:00:16 +01:00
TaikoLocalServer/GameDatabase/Entities/SongBestDatumMethods.cs
2022-10-27 00:42:41 +08:00

29 lines
589 B
C#

using SharedProject.Enums;
namespace GameDatabase.Entities;
public partial class SongBestDatum
{
public void UpdateBestData(CrownType crown, uint scoreRank, uint playScore, uint scoreRate)
{
if (BestCrown < crown)
{
BestCrown = crown;
}
if ((uint)BestScoreRank < scoreRank)
{
BestScoreRank = (ScoreRank)scoreRank;
}
if (BestScore < playScore)
{
BestScore = playScore;
}
if (BestRate < scoreRate)
{
BestRate = scoreRate;
}
}
}