From d7501d2ee06206d84e8ddc229b56f9f17d81f31f Mon Sep 17 00:00:00 2001 From: WhiteFang Date: Sat, 6 Aug 2022 12:34:14 +0200 Subject: [PATCH] [BloodRefill,Shared] Moved the DeathHook to the Shared code folder --- BloodRefill/BloodRefill.csproj | 1 + {BloodRefill/Hooks => Shared}/DeathHook.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) rename {BloodRefill/Hooks => Shared}/DeathHook.cs (97%) diff --git a/BloodRefill/BloodRefill.csproj b/BloodRefill/BloodRefill.csproj index c808393..5f28c1a 100644 --- a/BloodRefill/BloodRefill.csproj +++ b/BloodRefill/BloodRefill.csproj @@ -23,6 +23,7 @@ + diff --git a/BloodRefill/Hooks/DeathHook.cs b/Shared/DeathHook.cs similarity index 97% rename from BloodRefill/Hooks/DeathHook.cs rename to Shared/DeathHook.cs index ef437cc..211a41e 100644 --- a/BloodRefill/Hooks/DeathHook.cs +++ b/Shared/DeathHook.cs @@ -3,7 +3,7 @@ using Unity.Collections; using Wetstone.API; -namespace VMods.BloodRefill +namespace VMods.Shared { [HarmonyPatch] public static class DeathHook