Exemplo n.º 1
0
 /// <summary>
 /// Find components with specific type
 /// </summary>
 public IEnumerable <T> GetComponents <T>() where T : Component
 {
     return(container.GetComponents <T>());
 }
Exemplo n.º 2
0
 /// <summary>
 /// Find components with specific type
 /// </summary>
 public Component[] GetComponents <T>() where T : Component
 {
     return(container.GetComponents <T>());
 }