${Name}ModuleInterface.cpp 1005 B

123456789101112131415161718192021222324252627282930313233
  1. // {BEGIN_LICENSE}
  2. /*
  3. * Copyright (c) Contributors to the Open 3D Engine Project.
  4. * For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. *
  6. * SPDX-License-Identifier: Apache-2.0 OR MIT
  7. *
  8. */
  9. // {END_LICENSE}
  10. #include "${Name}ModuleInterface.h"
  11. #include <AzCore/Memory/Memory.h>
  12. #include <${Name}/${Name}TypeIds.h>
  13. namespace ${SanitizedCppName}
  14. {
  15. AZ_TYPE_INFO_WITH_NAME_IMPL(${SanitizedCppName}ModuleInterface,
  16. "${SanitizedCppName}ModuleInterface", ${SanitizedCppName}ModuleInterfaceTypeId);
  17. AZ_RTTI_NO_TYPE_INFO_IMPL(${SanitizedCppName}ModuleInterface, AZ::Module);
  18. AZ_CLASS_ALLOCATOR_IMPL(${SanitizedCppName}ModuleInterface, AZ::SystemAllocator);
  19. ${SanitizedCppName}ModuleInterface::${SanitizedCppName}ModuleInterface()
  20. {
  21. }
  22. AZ::ComponentTypeList ${SanitizedCppName}ModuleInterface::GetRequiredSystemComponents() const
  23. {
  24. return AZ::ComponentTypeList{
  25. };
  26. }
  27. } // namespace ${SanitizedCppName}