diff --git a/.gitignore b/.gitignore index ef71254..86890dd 100644 --- a/.gitignore +++ b/.gitignore @@ -77,3 +77,15 @@ Plugins/**/Intermediate/* DerivedDataCache/* BusyRabbit.uproject.DotSettings.user + +Plugins/SpinePlugin/Script/SpinePlugin.Glue +Script/ManagedBusyRabbit/bin +Script/ManagedBusyRabbit/obj +Script/ManagedBusyRabbit/Properties +Script/BusyRabbit.Glue/bin +Script/BusyRabbit.Glue/BusyRabbit +Script/BusyRabbit.Glue/obj +Script/BusyRabbit.Glue/Properties +Script/BusyRabbit.Glue/AssetIds.cs +Script/BusyRabbit.Glue/GameplayTags.cs +Script/BusyRabbit.Glue/TraceChannel.cs diff --git a/Plugins/UnrealSharp b/Plugins/UnrealSharp new file mode 160000 index 0000000..a5e501b --- /dev/null +++ b/Plugins/UnrealSharp @@ -0,0 +1 @@ +Subproject commit a5e501bc4322a95dc6713e9fdd76cca87ec98052 diff --git a/Script/BusyRabbit.Glue/BusyRabbit.Glue.csproj b/Script/BusyRabbit.Glue/BusyRabbit.Glue.csproj new file mode 100644 index 0000000..0ed0456 --- /dev/null +++ b/Script/BusyRabbit.Glue/BusyRabbit.Glue.csproj @@ -0,0 +1,20 @@ + + + net9.0 + enable + enable + true + true + true + + + + ..\..\Plugins\UnrealSharp\Binaries\Managed\net9.0\UnrealSharp.dll + + + ..\..\Plugins\UnrealSharp\Binaries\Managed\net9.0\UnrealSharp.Core.dll + + + + + \ No newline at end of file diff --git a/Script/ManagedBusyRabbit/ManagedBusyRabbit.cs b/Script/ManagedBusyRabbit/ManagedBusyRabbit.cs new file mode 100644 index 0000000..004ea61 --- /dev/null +++ b/Script/ManagedBusyRabbit/ManagedBusyRabbit.cs @@ -0,0 +1,16 @@ +using UnrealSharp.Engine.Core.Modules; + +namespace ManagedBusyRabbit; + +public class FManagedBusyRabbit : IModuleInterface +{ + public void StartupModule() + { + + } + + public void ShutdownModule() + { + + } +} \ No newline at end of file diff --git a/Script/ManagedBusyRabbit/ManagedBusyRabbit.csproj b/Script/ManagedBusyRabbit/ManagedBusyRabbit.csproj new file mode 100644 index 0000000..21447d9 --- /dev/null +++ b/Script/ManagedBusyRabbit/ManagedBusyRabbit.csproj @@ -0,0 +1,21 @@ + + + net9.0 + enable + enable + true + true + true + + + + ..\..\Plugins\UnrealSharp\Binaries\Managed\net9.0\UnrealSharp.dll + + + ..\..\Plugins\UnrealSharp\Binaries\Managed\net9.0\UnrealSharp.Core.dll + + + + + + \ No newline at end of file