22 lines
512 B
C#
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; }
|
|
}
|
|
}
|