Files
BusyRabbit/Script/ManagedBusyRabbit/ManagedBusyRabbit.cs

16 lines
216 B
C#
Raw Normal View History

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