16 lines
216 B
C#
16 lines
216 B
C#
using UnrealSharp.Engine.Core.Modules;
|
|
|
|
namespace ManagedBusyRabbit;
|
|
|
|
public class FManagedBusyRabbit : IModuleInterface
|
|
{
|
|
public void StartupModule()
|
|
{
|
|
|
|
}
|
|
|
|
public void ShutdownModule()
|
|
{
|
|
|
|
}
|
|
} |