Files
XRLib/Assets/Scripts/UVC/TopUI/SimulationSpeedCommandMono.cs

19 lines
425 B
C#
Raw Normal View History

2025-12-08 10:59:29 +09:00
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();
}
}
}