15 lines
305 B
C#
15 lines
305 B
C#
namespace InterfaceOff
|
|
{
|
|
public class BasicWindow : WindowBase
|
|
{
|
|
public override void OnWindowInstantiation()
|
|
{
|
|
Components.InfoText.text = "Close";
|
|
}
|
|
|
|
public override void OnWindowClicked()
|
|
{
|
|
Destroy(gameObject);
|
|
}
|
|
}
|
|
} |