merge
merge and property
This commit is contained in:
19
Assets/Scripts/UVC/TopUI/SimulationSpeedCommandMono.cs
Normal file
19
Assets/Scripts/UVC/TopUI/SimulationSpeedCommandMono.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user