HeavenStudio/Assets/GUIWindows/Scripts/GUIWindow.cs
2022-07-10 17:39:14 -04: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);
}
}
}