13 lines
189 B
C#
13 lines
189 B
C#
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public enum TierUpgradeState
|
|
{
|
|
NotReady,
|
|
|
|
FetchingMaterials,
|
|
|
|
AllMaterialsFetched,
|
|
|
|
MaxedOut
|
|
}
|
|
} |