3
0

${Name}FeatureProcessor.cpp 845 B

12345678910111213141516171819202122232425262728293031323334353637
  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 "${Name}FeatureProcessor.h"
  9. namespace ${Name}
  10. {
  11. void ${Name}FeatureProcessor::Reflect(AZ::ReflectContext* context)
  12. {
  13. if (auto* serializeContext = azrtti_cast<AZ::SerializeContext*>(context))
  14. {
  15. serializeContext
  16. ->Class<${Name}FeatureProcessor, FeatureProcessor>()
  17. ;
  18. }
  19. }
  20. void ${Name}FeatureProcessor::Activate()
  21. {
  22. }
  23. void ${Name}FeatureProcessor::Deactivate()
  24. {
  25. }
  26. void ${Name}FeatureProcessor::Simulate([[maybe_unused]] const FeatureProcessor::SimulatePacket& packet)
  27. {
  28. }
  29. }