Files
Studio/Assets/Scripts/ExternalAssets/GUIWindows/GUIWindow.cs
2025-05-21 12:10:38 +09:00

18 lines
344 B
C#

using UnityEngine;
namespace Rellac.Windows
{
/// <summary>
/// Simple script to destroy the target GameObject when window is closed
/// </summary>
public class GUIWindow : MonoBehaviour
{
/// <summary>
/// Close window by destroying this GameObject
/// </summary>
public void CloseWindow()
{
Destroy(gameObject);
}
}
}