SceneEventDropRange.cs 295 B

12345678910111213
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityGameFramework.Runtime;
  5. public class SceneEventDropRange : MonoBehaviour
  6. {
  7. public void Start()
  8. {
  9. AssemblyHelper.Instance.BindScript("SceneEventDropRangeLogic", this.gameObject);
  10. }
  11. }