LethalCompany/Lethal Company/ExportedProject/Assets/Scripts/Assembly-CSharp/EclipseWeather.cs

10 lines
193 B
C#
Raw Normal View History

2023-12-22 22:51:17 +00:00
using UnityEngine;
public class EclipseWeather : MonoBehaviour
{
private void OnEnable()
{
RoundManager.Instance.minOutsideEnemiesToSpawn = TimeOfDay.Instance.currentWeatherVariable;
}
}