1234567891011121314151617 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class AutoAddBulletLogic : MonoBehaviour
- {
- public string addScriptName;
- private void Awake()
- {
- AssemblyHelper.Instance.BindScript(addScriptName, this.gameObject);
- }
- // Start is called before the first frame update
- void OnEnable()
- {
-
- }
- }
|