16 lines
354 B
C#
16 lines
354 B
C#
using Studio.Command;
|
|
using XRLib.UI;
|
|
|
|
namespace Studio.UI
|
|
{
|
|
public class StudioCanvas_Static : CanvasBase
|
|
{
|
|
public StudioPanel_Topbar studiopanel_topbar;
|
|
|
|
public override void AfterAwake()
|
|
{
|
|
//studiopanel_topbar.onClickExit += () => CommandInvoker.instance.Invoke(new ExitProgramCommand());
|
|
}
|
|
}
|
|
}
|