AtomBridgeModule.h 896 B

123456789101112131415161718192021222324252627282930313233343536
  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. #pragma once
  9. #include <AzCore/Memory/SystemAllocator.h>
  10. #include <AzCore/Module/Module.h>
  11. #include <FlyCameraInputComponent.h>
  12. #include <AtomBridgeSystemComponent.h>
  13. namespace AZ
  14. {
  15. namespace AtomBridge
  16. {
  17. class Module
  18. : public AZ::Module
  19. {
  20. public:
  21. AZ_RTTI(Module, "{92196B90-6DF5-479D-8746-296AF56F0ABA}", AZ::Module);
  22. AZ_CLASS_ALLOCATOR(Module, AZ::SystemAllocator);
  23. Module();
  24. /**
  25. * Add required SystemComponents to the SystemEntity.
  26. */
  27. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  28. };
  29. }
  30. } // namespace AZ