#pragma once #include #include struct DateTime { [[nodiscard]] static uint32_t GetNumberOfDaysByMonthIndex(int index); DateTime() = default; DateTime(TimeModel aTimeModel) : m_timeModel(aTimeModel) {} bool operator==(const DateTime& other) const; void Update(uint64_t aDeltaTick); float GetDeltaTime(uint64_t aDeltaTick) const noexcept; float GetTimeInDays() const noexcept; TimeModel m_timeModel; };