Example #1
0
 public void NotifyComponentRemoved(Entities.Components.XComponent component)
 {
     if (OnNotifyComponentRemoved != null)
     {
         OnNotifyComponentRemoved(component);
     }
 }
Example #2
0
 public ComponentReference(XComponent _other)
 {
     entity = _other.Owner;
 }