// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
// Unity
using UnityEditor;
namespace AWS.GameKit.Editor.Utils
{
///
/// Has an instance of which points to this.
///
public interface IHasSerializedPropertyOfSelf
{
///
/// A which points to this.
///
public SerializedProperty SerializedPropertyOfSelf
{
get;
set;
}
}
}