18 lines
360 B
C#
18 lines
360 B
C#
|
|
using Simulator.UI.Commands;
|
||
|
|
using UnityEngine;
|
||
|
|
using UVC.UI.Commands.Mono;
|
||
|
|
|
||
|
|
public class SimulatorSaveCommandMono : MonoBehaviourCommand
|
||
|
|
{
|
||
|
|
SimulatorSaveCommand command;
|
||
|
|
private void Start()
|
||
|
|
{
|
||
|
|
command = new SimulatorSaveCommand();
|
||
|
|
}
|
||
|
|
public override void Execute()
|
||
|
|
{
|
||
|
|
Debug.Log("asdf");
|
||
|
|
command.Execute();
|
||
|
|
}
|
||
|
|
}
|