Files
BusyRabbit/Script/ManagedBusyRabbit/ManagedBusyRabbit.cs
wyatt fc1078f20c 成功编译C#插件 #12
添加了C#二进制相关文件的忽略
2025-10-25 05:22:01 +08:00

16 lines
216 B
C#

using UnrealSharp.Engine.Core.Modules;
namespace ManagedBusyRabbit;
public class FManagedBusyRabbit : IModuleInterface
{
public void StartupModule()
{
}
public void ShutdownModule()
{
}
}