Files
2026-05-21 16:04:49 +02:00

22 lines
512 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public class WorldTimeState
{
public int TotalWeeks { get; set; }
public int WeekNumber { get; set; }
public int MonthNumber { get; set; }
public int YearNumber { get; set; }
public float WeekTime { get; set; }
public DayNightCycleStep DayNightCycleStep { get; set; } = DayNightCycleStep.Day;
public float DayNightCycleTime { get; set; }
public float NightBlend { get; set; }
}
}