LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/EclipseWeather.cs
2023-12-22 18:30:10 -05:00

9 lines
193 B
C#

using UnityEngine;
public class EclipseWeather : MonoBehaviour
{
private void OnEnable()
{
RoundManager.Instance.minOutsideEnemiesToSpawn = TimeOfDay.Instance.currentWeatherVariable;
}
}