This repository has been archived on 2025-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
2023-10-11 15:44:05 +03:00
|
|
|
public class DailyLeaderboard : LeaderboardBase
|
2023-10-10 15:03:37 +03:00
|
|
|
{
|
2023-10-11 15:44:05 +03:00
|
|
|
protected override void OnEnable()
|
2023-10-10 15:03:37 +03:00
|
|
|
{
|
|
|
|
_leaderboardController.OnDailyInit.AddListener(InitLeaderboard);
|
|
|
|
}
|
|
|
|
|
2023-10-11 15:44:05 +03:00
|
|
|
protected override void OnDisable()
|
2023-10-10 15:03:37 +03:00
|
|
|
{
|
|
|
|
_leaderboardController.OnDailyInit.RemoveListener(InitLeaderboard);
|
|
|
|
}
|
|
|
|
}
|