InputChannelGesture.cpp 708 B

12345678910111213141516171819202122
  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. #include <InputChannelGesture.h>
  9. #include <AzCore/Serialization/SerializeContext.h>
  10. ////////////////////////////////////////////////////////////////////////////////////////////////////
  11. namespace Gestures
  12. {
  13. void InputChannelGesture::Type::Reflect(AZ::ReflectContext* context)
  14. {
  15. if (AZ::SerializeContext* serialize = azrtti_cast<AZ::SerializeContext*>(context))
  16. {
  17. serialize->Class<InputChannelGesture::Type>();
  18. }
  19. }
  20. } // namespace Gestures