123456789101112131415161718192021222324 |
- using Blue;
- using UnityEngine;
- namespace GHZLangChao
- {
- public class GetObjectSystem : SingletonMonobehaviour<GetObjectSystem>
- {
-
-
- private void Awake()
- {
- GetObj();
- PushIOC();
- }
- private void GetObj()
- {
- }
- private void PushIOC()
- {
- }
- }
- }
|