HeavenStudioPlus/Assets/GUIWindows/Scripts/GUIWindow.cs

18 lines
344 B
C#
Raw Normal View History

2022-07-10 21:39:14 +00:00
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);
}
}
}