Files
EnglewoodLAB/Assets/Scripts/Command/ActiveWallControlPanelCommand.cs
SOOBEEN HAN f1894889ee <refactor> Octopus Twin 템플릿 적용
- 기능 외 UI 구조만 적용
- 프로젝트에 걸맞는 UI는 재작업 필요
2026-02-23 18:20:09 +09:00

21 lines
538 B
C#

using UnityEngine;
using UVC.UI.Commands;
namespace EnglewoodLAB.Command
{
public class ActiveWallControlPanelCommand : ICommand
{
public void Execute(object? parameter = null)
{
// 파라미터는 여기서는 사용되지 않을 수 있음
if (parameter != null)
{
Debug.Log($"QuitApplicationCommand 실행됨 (파라미터 무시됨: {parameter})");
}
else
{
Debug.Log("QuitApplicationCommand 실행됨");
}
}
}
}