feat: initial commit

This commit is contained in:
ALittlePatate
2022-07-07 19:10:40 +02:00
commit b3b6fb2f77
13 changed files with 1204 additions and 0 deletions

17
Hacks/Unlocks.cs Normal file
View File

@@ -0,0 +1,17 @@
using UnityEngine;
using SlimeRanger.Helpers;
using System;
namespace SlimeRanger.Hacks
{
internal class Unlocks
{
public static void UnlockAllUpgrades()
{
foreach (PlayerState.Upgrade up in Enum.GetValues(typeof(PlayerState.Upgrade)))
{
StateHelpers.GetPlayerState().AddUpgrade(up);
}
}
}
}