using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace Ravenfield.Trigger
{
    public partial class TriggerUpdateSunlight : TriggerReceiver
    {
        public enum UpdateType
        {
            SetActive,
        }

        public UpdateType type = UpdateType.SetActive;

        public bool value;
    }
}