Initial commit

This commit is contained in:
pan.codes 2024-05-02 19:16:26 +02:00
commit 0afdc1d02f
93 changed files with 2453 additions and 0 deletions

View file

@ -0,0 +1,13 @@
using HarmonyLib;
namespace CurrencyChanger2.Patches
{
[HarmonyPatch(typeof(PriceManager), "CurrentCost")]
public static class PriceManager_CurrentCost_Patch
{
public static void Postfix(ref float __result)
{
__result *= Plugin.CurrencyValueFactor.Value;
}
}
}