AWSGameLiftAcceptMatchRequest.h 974 B

123456789101112131415161718192021222324252627282930
  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 <Multiplayer/Session/MatchmakingRequests.h>
  10. namespace AWSGameLift
  11. {
  12. //! AWSGameLiftAcceptMatchRequest
  13. //! GameLift accept match request which corresponds to Amazon GameLift
  14. //! Registers a player's acceptance or rejection of a proposed FlexMatch match.
  15. //! AcceptMatchRequest
  16. struct AWSGameLiftAcceptMatchRequest
  17. : public Multiplayer::AcceptMatchRequest
  18. {
  19. public:
  20. AZ_RTTI(AWSGameLiftAcceptMatchRequest, "{8372B297-88E8-4C13-B31D-BE87236CA416}", Multiplayer::AcceptMatchRequest);
  21. static void Reflect(AZ::ReflectContext* context);
  22. AWSGameLiftAcceptMatchRequest() = default;
  23. virtual ~AWSGameLiftAcceptMatchRequest() = default;
  24. };
  25. } // namespace AWSGameLift