// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 #pragma once // Standard library #include #include #include // AWS SDK #include #include // GameKit #include "errors.h" #include "logging.h" namespace GameKit { class GameKitFeature { protected: const char* m_featureName = nullptr; FuncLogCallback m_logCb = nullptr; public: GameKitFeature() {}; virtual ~GameKitFeature() {}; }; }