- using Model;
- using UnityEngine;
- namespace Hotfix
- {
- [ObjectEvent((int)EntityEventId.GameObjectComponent)]
- public class GameObjectComponent: Component
- {
- public GameObject GameObject { get; private set; }
- private void Awake(GameObject gameObject)
- {
- this.GameObject = gameObject;
- }
- }
- }
|