Files
factory-game/source/Utils/Constants.cs
2026-03-01 08:32:24 +03:00

12 lines
388 B
C#

namespace FactoryGame.Utils;
public static class Constants {
public static class PropertyHints {
public const string PrimaRange = "0, 1, 0.05";
public const string SecondRange = "0, 2, 0.1";
public const string QuartRange = "0, 4, 0.2";
public const string OctaveRange = "0, 8, 0.4";
public const string TwoOctaveRange = "0, 16, 0.8";
}
}