19 lines
425 B
C#
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();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|