Change an existing component in an action

This commit is contained in:
Tim Young 2018-05-14 13:47:55 -05:00
parent 617c5e2dc3
commit 871f4132fe
1 changed files with 9 additions and 0 deletions

View File

@ -1481,6 +1481,15 @@ namespace EduNetworkBuilder
AC.DoAction();
}
/// <summary>
/// Make an adjustment to a preexisting component
/// </summary>
/// <param name="Changed"></param>
public static void DoActionChangeComponent(NetworkComponent Changed)
{
DoActionChangeComponent(Changed.GetUniqueIdentifier, Changed);
}
#endregion ActionFunctions