Files
XRLib/Assets/Scripts/UVC/TopUI/SimulatorSaveCommandMono.cs
UVCLimHun 6b78b68229 merge
merge and property
2025-12-24 17:36:01 +09:00

18 lines
360 B
C#

using Simulator.UI.Commands;
using UnityEngine;
using UVC.UI.Commands.Mono;
public class SimulatorSaveCommandMono : MonoBehaviourCommand
{
SimulatorSaveCommand command;
private void Start()
{
command = new SimulatorSaveCommand();
}
public override void Execute()
{
Debug.Log("asdf");
command.Execute();
}
}