// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 namespace AWS.GameKit.Editor.Utils { /// /// Exposes a Get() method which returns an object of the specified type. /// /// The type of objects that may be returned. public interface IGettable { /// /// Get an object of the specified type. See the implementing class for details on the returned object. /// public T Get(); } }