Remove unused colour code

This commit is contained in:
Dean Herbert 2022-10-06 17:36:06 +09:00
parent 9a92ff1681
commit f1ea61b1a2
1 changed files with 0 additions and 7 deletions

View File

@ -43,13 +43,6 @@ public class Stage : ScrollingPlayfield
private readonly Drawable barLineContainer;
// private readonly Dictionary<ColumnType, Color4> columnColours = new Dictionary<ColumnType, Color4>
// {
// { ColumnType.Even, new Color4(6, 84, 0, 255) },
// { ColumnType.Odd, new Color4(94, 0, 57, 255) },
// { ColumnType.Special, new Color4(0, 48, 63, 255) }
// };
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => Columns.Any(c => c.ReceivePositionalInputAt(screenSpacePos));
private readonly int firstColumnIndex;