Files
riversong-code-showcase/Source/Riversong/Game/World/Population/TierUpgradeState.cs
2026-05-21 16:04:49 +02:00

13 lines
189 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public enum TierUpgradeState
{
NotReady,
FetchingMaterials,
AllMaterialsFetched,
MaxedOut
}
}