namespace Core.Helpers;
public class WeatherHelper
{
public WeatherHelper()
{
}
///
/// Get the current in-raid time - does not include an accurate date, only time
///
/// (new Date())
/// Date object of current in-raid time
public DateTime GetInRaidTime(double? timestamp = null)
{
throw new NotImplementedException();
}
///
/// Is the current raid at nighttime
///
/// PASS OR CURR (from raid settings)
/// True when nighttime
public bool IsNightTime(DateTime timeVariant)
{
throw new NotImplementedException();
}
public bool IsHourAtNightTime(int currentHour)
{
throw new NotImplementedException();
}
}