12345678910111213141516171819202122232425 |
- using Blue;
- using UnityEngine;
- namespace GHZLangChao
- {
- public class GetObjectSystem : SingletonMonobehaviour<GetObjectSystem>
- {
- [SerializeField] private GameObject ShowDevice;
-
- private void Awake()
- {
- GetObj();
- PushIOC();
- }
- private void GetObj()
- {
- }
- private void PushIOC()
- {
- SceneIOCContainer.Instance.Push("ShowDevice",ShowDevice);
- }
- }
- }
|