12 lines
231 B
C#
12 lines
231 B
C#
using Simulator.Command;
|
|
using UnityEngine;
|
|
using UVC.UI.Commands.Mono;
|
|
|
|
public class SimulatorStopCommandMono : MonoBehaviourCommand
|
|
{
|
|
public override void Execute()
|
|
{
|
|
new SimulatorStopCommand().Execute();
|
|
}
|
|
}
|