SkinMeshData.h 742 B

123456789101112131415161718192021222324252627282930
  1. #pragma once
  2. /*
  3. * Copyright (c) Contributors to the Open 3D Engine Project.
  4. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. *
  6. * SPDX-License-Identifier: Apache-2.0 OR MIT
  7. *
  8. */
  9. #include <SceneAPI/SceneData/SceneDataConfiguration.h>
  10. #include <SceneAPI/SceneData/GraphData/MeshData.h>
  11. namespace AZ
  12. {
  13. namespace SceneData
  14. {
  15. namespace GraphData
  16. {
  17. class SkinMeshData
  18. : public MeshData
  19. {
  20. public:
  21. AZ_RTTI(SkinMeshData, "{F765B68B-101E-4CED-879A-663AEDE6AE89}", MeshData);
  22. virtual ~SkinMeshData() override = default;
  23. };
  24. } // GraphData
  25. } // SceneData
  26. } // AZ