// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 namespace AWS.GameKit.Editor.GUILayoutExtensions { /// /// Interface for a GUI element which can be drawn on the screen with Unity's EditorGUILayout or GUILayout. /// public interface IDrawable { /// /// Draw this element on the screen using functions in UnityEditor.EditorGUILayout or UnityEditor.GUILayout. /// public void OnGUI(); } }