SceneEventAreaLock.cs 335 B

12345678910111213
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class SceneEventAreaLock : MonoBehaviour
  5. {
  6. public int areaIndex = 0;
  7. // Start is called before the first frame update
  8. void Start()
  9. {
  10. AssemblyHelper.Instance.BindScript("SceneEventAreaLockLogic", this.gameObject);
  11. }
  12. }