GetRemainingTimeSpan

Description

Returns the remaining time until the current day is available to claim.

Declaration

public static TimeSpan GetRemainingTimeSpan()

Return

TimeSpan - time remaining until the current day can be claimed.

Example

Test.cs
public class Test : MonoBehaviour
{
    public void GetRemainingTime()
    {
        Debug.Log(Gley.DailyRewards.API.Calendar.GetRemainingTimeSpan());
    }
}

Last updated