Exemple #1
0
 /// <summary>
 /// Add an action that runs after a script is added, the action will also be run on all current scripts.
 /// </summary>
 /// <typeparam name="T">The type of script</typeparam>
 /// <param name="action">The action to run after a script is added.</param>
 public static void AddAfterScriptAdded <T>(Action <long, T> action)
 {
     Register <T> .AddAfterScriptAdded(action);
 }