Exemple #1
0
 public static T[] FindObjectsOfType <T>() where T : DozeObject
 => DozeObjectManager.GetAllObjectsByType <T>();
Exemple #2
0
 public static T FindObjectOfType <T>() where T : DozeObject
 => DozeObjectManager.GetObjectByType <T>();
Exemple #3
0
 public static T Create <T>(string tag = "") where T : DozeObject
 => DozeObjectManager.Create <T>(tag);
Exemple #4
0
 public static T GetObjectByTag <T>(string tag) where T : DozeObject
 => DozeObjectManager.GetObjectByTag <T>(tag);
Exemple #5
0
 public static T Create <T>() where T : DozeObject, new()
 => DozeObjectManager.Create <T>();