Add tier management system with JSON loading; refactor PopulationVisualizer for category handling

This commit is contained in:
2025-08-23 05:23:09 +02:00
parent bf272b4c2f
commit 4a3bc46081
8 changed files with 91 additions and 15 deletions

15
Scripts/Core/TierDto.cs Normal file
View File

@@ -0,0 +1,15 @@
using System.Collections.Generic;
namespace ParasiticGod.Scripts.Core;
public class TierDto
{
public Follower.FollowerTier TierEnum { get; set; }
public long Threshold { get; set; }
public string ScenePath { get; set; }
}
public class TierListDto
{
public List<TierDto> Tiers { get; set; }
}