Added spring

This commit is contained in:
Pasha Bibko
2026-04-16 13:22:52 +01:00
parent 6868788af7
commit dd28471cfc
18 changed files with 650 additions and 37 deletions

View File

@@ -49,7 +49,11 @@ namespace Fruitomation.Game
PitayaIceCream,
SpicedPitayaIceCream,
}
[Serializable] public enum IncrementalUpgrade
{
}
public class UnlockedUpgrades
{
[Serializable] public class Serialized
@@ -130,7 +134,7 @@ namespace Fruitomation.Game
public static void Unlock(BasicUpgrade upgrade) => CurrentUpgrades.Unlock(upgrade);
public static bool Unlocked(BasicUpgrade upgrade) => CurrentUpgrades.IsUnlocked(upgrade);
public static bool Is(BasicUpgrade upgrade) => CurrentUpgrades.IsUnlocked(upgrade);
#if UNITY_EDITOR
[MenuItem("Fruitomation/Reset Upgrades")]