using Kryz.CharacterStats.Examples; using UnityEngine; public class BrokerInterceptor : MonoBehaviour { protected EntityEventBroker broker; protected CharacterStats stats; protected Taggable user; protected virtual void Awake() { user = GetComponentInParent(); broker = GetComponentInParent(); stats = GetComponentInParent(); } }