3
0

RenderActor.h 694 B

1234567891011121314151617181920212223242526272829
  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/Memory/Memory.h>
  10. #include <AzCore/RTTI/RTTI.h>
  11. namespace EMotionFX
  12. {
  13. namespace Integration
  14. {
  15. class RenderActor
  16. {
  17. public:
  18. AZ_RTTI(EMotionFX::Integration::RenderActor, "{827A2CD5-C5FC-4D14-984D-B44A52EA92CC}")
  19. AZ_CLASS_ALLOCATOR_DECL
  20. RenderActor() = default;
  21. virtual ~RenderActor() = default;
  22. };
  23. } // namespace Integration
  24. } // namespace EMotionFX