更新了生产过程

This commit is contained in:
CortexCore
2023-07-05 10:20:08 +08:00
parent d12e53739d
commit 03321346e4
23 changed files with 1454 additions and 191 deletions

View File

@@ -0,0 +1,13 @@
using Godot;
namespace BITKit;
public partial class OpenPath:Node,IAction
{
[Export] private string path;
public void Execute()
{
BIT4Log.Log<OpenPath>($"正在打开路径:{path}");
BITApp.Open(path);
}
}