feat: initial commit
This commit is contained in:
17
Hacks/Unlocks.cs
Normal file
17
Hacks/Unlocks.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user