AutoAddBulletLogic.cs 375 B

1234567891011121314151617
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class AutoAddBulletLogic : MonoBehaviour
  5. {
  6. public string addScriptName;
  7. private void Awake()
  8. {
  9. AssemblyHelper.Instance.BindScript(addScriptName, this.gameObject);
  10. }
  11. // Start is called before the first frame update
  12. void OnEnable()
  13. {
  14. }
  15. }