Files

18 lines
389 B
C#
Raw Permalink Normal View History

2026-03-10 11:35:30 +09:00
#nullable enable
using UnityEngine;
using UVC.UI.Commands;
namespace UVC.Studio.Command
{
/// <summary>
/// 데이터베이스 삽입 커맨드
/// </summary>
public class FileInsertDbCommand : ICommand
{
public void Execute(object? parameter = null)
{
Debug.Log("[FileInsertDbCommand] 데이터베이스 삽입 실행");
}
}
}