MultiplayerEditorGem.h 685 B

123456789101112131415161718192021222324252627
  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 "MultiplayerGem.h"
  10. namespace Multiplayer
  11. {
  12. class MultiplayerEditorModule: public MultiplayerModule
  13. {
  14. public:
  15. AZ_CLASS_ALLOCATOR_DECL
  16. AZ_RTTI(MultiplayerEditorModule, "{50273605-2BBF-4D43-A42D-ED140B92B4D4}", MultiplayerModule);
  17. MultiplayerEditorModule();
  18. ~MultiplayerEditorModule();
  19. AZ::ComponentTypeList GetRequiredSystemComponents() const override;
  20. };
  21. } // namespace Multiplayer