| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- * Copyright (c) Contributors to the Open 3D Engine Project.
- * For complete copyright and license terms please see the LICENSE at the root of this distribution.
- *
- * SPDX-License-Identifier: Apache-2.0 OR MIT
- *
- */
- #include <Tools/AtomSampleViewerToolsSystemComponent.h>
- #include <Atom/RPI.Edit/Material/MaterialFunctorSourceDataRegistration.h>
- #include <AzCore/Component/Entity.h>
- #include <AzCore/Serialization/EditContext.h>
- #include <AzCore/Serialization/SerializeContext.h>
- namespace AtomSampleViewer
- {
- namespace Tools
- {
- void AtomSampleViewerToolsSystemComponent::Reflect(AZ::ReflectContext* context)
- {
- if (auto* serialize = azrtti_cast<AZ::SerializeContext*>(context))
- {
- serialize->Class<AtomSampleViewerToolsSystemComponent, AZ::Component>()
- ->Version(0)
- ;
- }
- }
- void AtomSampleViewerToolsSystemComponent::Activate()
- {
- }
- void AtomSampleViewerToolsSystemComponent::Deactivate()
- {
- }
- } // namespace Tools
- } // namespace AtomSampleViewer
|