Example #1
0
    public bool UndoLastAction()
    {
        bool result = false;

        if (stageModel.CanUndoLastAction())
        {
            result = true;
            stageModel.UndoLastAction();
        }

        return(result);
    }