Top메뉴, Toolbar

This commit is contained in:
geondo55
2025-04-29 14:48:00 +09:00
parent 4e544cc54d
commit 78c5e3b714
17 changed files with 14504 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
using UnityEngine;
namespace XED.Command
{
public class ExitProgramCommand : IIrreversibleCommand
{
public ExitProgramCommand()
{
}
public string id { get => throw new System.NotImplementedException(); set => throw new System.NotImplementedException(); }
public bool CanExecute()
{
throw new System.NotImplementedException();
}
public void Execute()
{
Application.Quit();
}
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: a5e265f61efc5e44f8dcaad35017208a