Files
riversong-code-showcase/Source/Riversong/Game/UI/Panels/TimePanel/TimePanelModel.cs
2026-05-21 16:04:49 +02:00

19 lines
438 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public class TimePanelModel : UIModel
{
public int Week { get; private set; }
public int Month { get; private set; }
public int Year { get; private set; }
public void Update(int week, int month, int year)
{
Week = week;
Month = month;
Year = year;
NotifyPropertyChanged();
}
}
}