IPrefabGroup.h 732 B

1234567891011121314151617181920212223242526
  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 <AzCore/RTTI/RTTI.h>
  10. #include <SceneAPI/SceneCore/DataTypes/Groups/ISceneNodeGroup.h>
  11. #include <AzToolsFramework/Prefab/PrefabDomTypes.h>
  12. namespace AZ::SceneAPI::DataTypes
  13. {
  14. class IPrefabGroup
  15. : public ISceneNodeGroup
  16. {
  17. public:
  18. AZ_RTTI(IPrefabGroup, "{7E50FAEF-3379-4521-99C5-B428FDEE3B7B}", ISceneNodeGroup);
  19. ~IPrefabGroup() override = default;
  20. virtual AzToolsFramework::Prefab::PrefabDomConstReference GetPrefabDomRef() const = 0;
  21. };
  22. }