merge and property
This commit is contained in:
2025-12-24 17:36:01 +09:00
parent d4764e304f
commit 6b78b68229
109 changed files with 14167 additions and 625 deletions

View File

@@ -0,0 +1,17 @@
using Simulator;
using Simulator.Config;
using System;
using UnityEngine;
using UVC.UI.Commands;
public class SimulatorSaveCommand : ICommand
{
public SimulatorSaveCommand(object? parameter = null)
{
}
public async void Execute(object? parameter = null)
{
UpdateValueStack.Save();
}
}