12 lines
212 B
C#
12 lines
212 B
C#
using UnityEngine;
|
|
|
|
public class LightSwitchManager : MonoBehaviour
|
|
{
|
|
public static bool IsLightSwitchActivated = false;
|
|
|
|
public void ActivateSwitch()
|
|
{
|
|
IsLightSwitchActivated = true;
|
|
}
|
|
}
|