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

19 lines
425 B
C#

using UnityEngine;
using System.Collections.Generic;
using UVC.UI.Commands.Mono;
namespace Simulator.UI.Commands
{
public class SimulationSpeedCommandMono : MonoBehaviourCommand
{
SimulatorSpeedCommand command;
private void Start()
{
command = new SimulatorSpeedCommand();
}
public override void Execute()
{
command.Execute();
}
}
}