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.
rabidus-test/Assets/Scripts/DailyLeaderboard.cs

13 lines
305 B
C#

public class DailyLeaderboard : LeaderboardBase
{
protected override void OnEnable()
{
_leaderboardController.OnDailyInit.AddListener(InitLeaderboard);
}
protected override void OnDisable()
{
_leaderboardController.OnDailyInit.RemoveListener(InitLeaderboard);
}
}