InAppPurchasesModule.h 612 B

1234567891011121314151617181920212223242526
  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/Module/Module.h>
  10. #include <IGem.h>
  11. namespace InAppPurchases
  12. {
  13. class InAppPurchasesModule
  14. : public AZ::Module
  15. {
  16. public:
  17. AZ_RTTI(InAppPurchasesModule, "{19EC24B6-87E8-44AE-AC33-C280F67FD3F7}", AZ::Module);
  18. InAppPurchasesModule();
  19. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  20. };
  21. }