更新了生产过程

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 OpenUrl : Node,IAction
{
[Export] private string url;
public void Execute()
{
BIT4Log.Log<OpenUrl>($"正在打开网址:{url}");
OS.ShellOpen(url);
}
}