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(); } } }