SceneEventMassPointB.cs 297 B

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