18 lines
371 B
C#
18 lines
371 B
C#
#nullable enable
|
|
using UnityEngine;
|
|
using UVC.UI.Commands;
|
|
|
|
namespace UVC.Studio.Command
|
|
{
|
|
/// <summary>
|
|
/// 평면 생성 커맨드
|
|
/// </summary>
|
|
public class EditCreatePlaneCommand : ICommand
|
|
{
|
|
public void Execute(object? parameter = null)
|
|
{
|
|
Debug.Log("[EditCreatePlaneCommand] 평면 생성 실행");
|
|
}
|
|
}
|
|
}
|