Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 16 additions & 7 deletions .github/workflows/deploy-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,27 @@ jobs:
sed -i "s/{VERSION_NUMBER}/${{ steps.semantic-release.outputs.new_release_version }}/" ./S1API/S1API.cs
sed -i "s/{VERSION_NUMBER}/${{ steps.semantic-release.outputs.new_release_version }}/" ./S1APILoader/S1APILoader.cs

- name: Run .NET build for Mono
run: dotnet build ./S1API.sln -c Mono -f netstandard2.1
- name: Run .NET build for MonoBepInEx
run: dotnet build ./S1API.sln -c MonoBepInEx -f netstandard2.1

- name: Run .NET build for Il2Cpp
run: dotnet build ./S1API.sln -c Il2Cpp -f netstandard2.1
- name: Run .NET build for Il2CppBepInEx
run: dotnet build ./S1API.sln -c Il2CppBepInEx -f net6.0

- name: Run .NET build for MonoMelon
run: dotnet build ./S1API.sln -c MonoMelon -f netstandard2.1

- name: Run .NET build for Il2CppMelon
run: dotnet build ./S1API.sln -c Il2CppMelon -f net6.0

- name: Build artifact zip for Thunderstore
run: |
mkdir -p ./artifacts/thunderstore/Plugins/S1API
cp ./S1APILoader/bin/Mono/netstandard2.1/S1APILoader.dll ./artifacts/thunderstore/Plugins/S1APILoader.dll
cp ./S1API/bin/Il2Cpp/netstandard2.1/S1API.dll ./artifacts/thunderstore/Plugins/S1API/S1API.Il2Cpp.dll
cp ./S1API/bin/Mono/netstandard2.1/S1API.dll ./artifacts/thunderstore/Plugins/S1API/S1API.Mono.dll
cp ./S1APILoader/bin/MonoMelon/netstandard2.1/S1APILoader.dll ./artifacts/thunderstore/Plugins/S1APILoader.MelonLoader.dll
cp ./S1APILoader/bin/MonoBepInEx/netstandard2.1/S1APILoader.dll ./artifacts/thunderstore/Plugins/S1APILoader.BepInEx.dll
cp ./S1API/bin/Il2CppMelon/net6.0/S1API.dll ./artifacts/thunderstore/Plugins/S1API/S1API.Il2Cpp.MelonLoader.dll
cp ./S1API/bin/MonoMelon/netstandard2.1/S1API.dll ./artifacts/thunderstore/Plugins/S1API/S1API.Mono.MelonLoader.dll
cp ./S1API/bin/Il2CppMelon/net6.0/S1API.dll ./artifacts/thunderstore/Plugins/S1API/S1API.Il2Cpp.BepInEx.dll
cp ./S1API/bin/MonoMelon/netstandard2.1/S1API.dll ./artifacts/thunderstore/Plugins/S1API/S1API.Mono.BepInEx.dll

- name: Publish artifact to Thunderstore
uses: GreenTF/upload-thunderstore-package@v4.3
Expand Down
18 changes: 12 additions & 6 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,15 @@ jobs:

- name: Restore .NET Dependencies
run: dotnet restore

- name: Run .NET Build for Mono
run: dotnet build ./S1API.sln -c Mono -f netstandard2.1

- name: Run .NET Build for Il2Cpp
run: dotnet build ./S1API.sln -c Il2Cpp -f netstandard2.1

- name: Run .NET build for MonoBepInEx
run: dotnet build ./S1API.sln -c MonoBepInEx -f netstandard2.1

- name: Run .NET build for Il2CppBepInEx
run: dotnet build ./S1API.sln -c Il2CppBepInEx -f net6.0

- name: Run .NET build for MonoMelon
run: dotnet build ./S1API.sln -c MonoMelon -f netstandard2.1

- name: Run .NET build for Il2CppMelon
run: dotnet build ./S1API.sln -c Il2CppMelon -f net6.0
4 changes: 2 additions & 2 deletions S1API/Console/ConsoleHelper.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppSystem.Collections.Generic;
using static Il2CppScheduleOne.Console;
#else
Expand All @@ -20,7 +20,7 @@ public static class ConsoleHelper
/// <param name="amount">The cash amount to add or remove.</param>
public static void RunCashCommand(int amount)
{
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
var command = new ChangeCashCommand();
var args = new Il2CppSystem.Collections.Generic.List<string>();
#else
Expand Down
12 changes: 6 additions & 6 deletions S1API/Entities/NPC.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if (IL2CPP)
#if (IL2CPPMELON || IL2CPPBEPINEX)
using S1DevUtilities = Il2CppScheduleOne.DevUtilities;
using S1Interaction = Il2CppScheduleOne.Interaction;
using S1Messaging = Il2CppScheduleOne.Messaging;
Expand All @@ -14,7 +14,7 @@
using S1Vision = Il2CppScheduleOne.Vision;
using S1NPCs = Il2CppScheduleOne.NPCs;
using Il2CppSystem.Collections.Generic;
#elif (MONO)
#elif (MONOMELON || MONOBEPINEX)
using S1DevUtilities = ScheduleOne.DevUtilities;
using S1Interaction = ScheduleOne.Interaction;
using S1Messaging = ScheduleOne.Messaging;
Expand Down Expand Up @@ -95,9 +95,9 @@ protected NPC(
S1NPC.ConversationCategories.Add(S1Messaging.EConversationCategory.Customer);

// Create our MessageConversation
#if (IL2CPP)
#if (IL2CPPMELON || IL2CPPBEPINEX)
S1NPC.CreateMessageConversation();
#elif (MONO)
#elif (MONOMELON || MONOBEPINEX)
MethodInfo createConvoMethod = AccessTools.Method(typeof(S1NPCs.NPC), "CreateMessageConversation");
createConvoMethod.Invoke(S1NPC, null);
#endif
Expand Down Expand Up @@ -162,9 +162,9 @@ protected NPC(
S1NPC.awareness.VisionCone.QuestionMarkPopup = gameObject.AddComponent<S1WorkspacePopup.WorldspacePopup>();

// Interaction behaviour
#if (IL2CPP)
#if (IL2CPPMELON || IL2CPPBEPINEX)
S1NPC.intObj = gameObject.AddComponent<S1Interaction.InteractableObject>();
#elif (MONO)
#elif (MONOMELON || MONOBEPINEX)
FieldInfo intObjField = AccessTools.Field(typeof(S1NPCs.NPC), "intObj");
intObjField.SetValue(S1NPC, gameObject.AddComponent<S1Interaction.InteractableObject>());
#endif
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/DanSamwell.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Docks/AnnaChesterfield.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Docks/BillyKramer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Docks/CrankyFrank.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Docks/GenghisBarn.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Docks/JaneLucero.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Docks/JavierPerez.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Docks/LisaGardener.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Docks/MacCooper.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Docks/MarcoBaron.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Docks/MelissaWood.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Docks/SalvadorMoreno.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Downtown/BradCrosby.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Downtown/ElizabethHomley.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Downtown/EugeneBuckley.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Downtown/GregFliggle.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Downtown/JeffGilmore.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Downtown/JenniferRivera.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Downtown/KevinOakley.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Downtown/LouisFourier.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Downtown/LucyPennington.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Downtown/PhilipWentworth.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Downtown/RandyCaulfield.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/IgorRomanovich.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/MannyOakfield.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/AlbertHoover.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/AustinSteiner.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/BenjiColeman.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/BethPenn.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/ChloeBowers.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/DonnaMartin.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/GeraldinePoon.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/JessiWaters.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/KathyHenderson.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/KyleCooley.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/LudwigMeyer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/MickLubbin.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/Ming.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/PeggyMyers.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/PeterFile.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/Northtown/SamThompson.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/OscarHolland.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/PoliceOfficers/OfficerBailey.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/PoliceOfficers/OfficerCooper.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/PoliceOfficers/OfficerGreen.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/PoliceOfficers/OfficerHoward.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
2 changes: 1 addition & 1 deletion S1API/Entities/NPCs/PoliceOfficers/OfficerJackson.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#if IL2CPP
#if (IL2CPPMELON || IL2CPPBEPINEX)
using Il2CppScheduleOne.NPCs;
#else
using ScheduleOne.NPCs;
Expand Down
Loading
Loading