FlatRedBall.Glue.EditorLogic.TakeSnapshot C# (CSharp) Method

TakeSnapshot() public static method

public static TakeSnapshot ( ) : void
return void
        public static void TakeSnapshot()
        {
            MainGlueWindow.Self.Invoke((MethodInvoker)delegate
            {
                EditorLogicSnapshot.CurrentElementTreeNode = CurrentElementTreeNode;
                EditorLogicSnapshot.CurrentState = CurrentStateSave;
                EditorLogicSnapshot.CurrentTreeNode = CurrentTreeNode;
                EditorLogicSnapshot.CurrentNamedObject = CurrentNamedObject;
                EditorLogicSnapshot.CurrentElement = CurrentElement;
            });
        }
EditorLogic