Example #1
0
 /**
  * Add a component to this entity.
  * @param component to add to this entity
  */
 public void AddComponent(Component component)
 {
     System.Diagnostics.Debug.Assert(component != null);
     entityManager.AddComponent(this, component);
 }
Example #2
0
 /**
  * Add a component to this entity.
  * @param component to add to this entity
  */
 public void AddComponent(Component component)
 {
     entityManager.AddComponent(this, component);
 }