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