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