feat: 랭킹 노출 조건 수정

This commit is contained in:
aube.lee
2025-03-04 22:33:46 +09:00
parent 20219615b9
commit 58b98ce463
7 changed files with 58 additions and 43 deletions

View File

@@ -24,6 +24,14 @@ namespace TON
score = 0;
}
public ClearData(string nickname, int wave, float playTime, int score)
{
this.nickname = nickname;
this.wave = wave;
this.playTime = playTime;
this.score = score;
}
public void UpdateClearData(string nickname, int wave, float playTime, int score)
{
this.nickname = nickname;