12 lines
230 B
C#
12 lines
230 B
C#
using UnityEngine;
|
|
using UVC.UI.Commands;
|
|
using UVC.UI.Commands.Mono;
|
|
|
|
public class SimulationPlayCommandMono : MonoBehaviourCommand
|
|
{
|
|
public override void Execute()
|
|
{
|
|
new SimulatorPlayCommand().Execute();
|
|
}
|
|
}
|