15 строки
373 B
C#
15 строки
373 B
C#
namespace osu.Game.Rulesets.HoLLy.Hex
|
|
{
|
|
internal static class Constants
|
|
{
|
|
public const float ColumnWidthBase = 256f * 1.5f;
|
|
public const float PaddingBase = 64f;
|
|
public const int LaneLength = 800;
|
|
|
|
public const int LanesMin = 3;
|
|
public const int LanesMax = 10;
|
|
|
|
public const double NoteSpeedBase = 4_000;
|
|
}
|
|
}
|