디자인 변경 중

This commit is contained in:
logonkhi
2025-08-06 19:16:41 +09:00
parent 5ed1323dae
commit 2e4718291e
97 changed files with 4184 additions and 2031 deletions

View File

@@ -0,0 +1,13 @@
using UVC.UI.Commands;
using UVC.UI.Commands.Mono;
namespace Assets.Scripts.UVC.UI.Commands.Mono
{
internal class MinimizeApplicationCommandMono : MonoBehaviourCommand
{
public override void Execute()
{
new MinimizeApplicationCommand().Execute();
}
}
}