Exemplo n.º 1
0
Arquivo: Starter.cs Projeto: bmjoy/ecs
 public void Add <T>() where T : new()
 {
     Toolbox.Add <T>();
 }
Exemplo n.º 2
0
Arquivo: Starter.cs Projeto: bmjoy/ecs
 /// <summary>
 /// <para>Adds an object to the toolbox by type. It is mainly used to add processing scripts.</para>
 /// </summary>
 /// <typeparam name="T"></typeparam>
 /// <returns></returns>
 protected static T Add <T>() where T : new()
 {
     return(Toolbox.Add <T>());
 }