PrefabTestUndoFixture.h 605 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) Contributors to the Open 3D Engine Project.
  3. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0 OR MIT
  6. *
  7. */
  8. #pragma once
  9. #include <Prefab/PrefabTestFixture.h>
  10. namespace UnitTest
  11. {
  12. class PrefabTestUndoFixture
  13. : public PrefabTestFixture
  14. {
  15. protected:
  16. void SetupInstances(
  17. AZStd::unique_ptr<Instance>& firstInstance,
  18. AZStd::unique_ptr<Instance>& secondInstance,
  19. TemplateId& ownerId,
  20. TemplateId& referenceId);
  21. };
  22. }