AtomSampleViewerToolsSystemComponent.cpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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 <Tools/AtomSampleViewerToolsSystemComponent.h>
  9. #include <Atom/RPI.Edit/Material/MaterialFunctorSourceDataRegistration.h>
  10. #include <AzCore/Component/Entity.h>
  11. #include <AzCore/Serialization/EditContext.h>
  12. #include <AzCore/Serialization/SerializeContext.h>
  13. namespace AtomSampleViewer
  14. {
  15. namespace Tools
  16. {
  17. void AtomSampleViewerToolsSystemComponent::Reflect(AZ::ReflectContext* context)
  18. {
  19. if (auto* serialize = azrtti_cast<AZ::SerializeContext*>(context))
  20. {
  21. serialize->Class<AtomSampleViewerToolsSystemComponent, AZ::Component>()
  22. ->Version(0)
  23. ;
  24. }
  25. }
  26. void AtomSampleViewerToolsSystemComponent::Activate()
  27. {
  28. }
  29. void AtomSampleViewerToolsSystemComponent::Deactivate()
  30. {
  31. }
  32. } // namespace Tools
  33. } // namespace AtomSampleViewer