merge and property
This commit is contained in:
2025-12-24 17:36:01 +09:00
parent d4764e304f
commit 6b78b68229
109 changed files with 14167 additions and 625 deletions

View File

@@ -0,0 +1,19 @@
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();
}
}
}