// // Copyright (c) Adrian Conlon. All rights reserved. // namespace EightBit.GameBoy { public class AbstractColourPalette { protected AbstractColourPalette() { } protected T[] Colours { get; } = new T[4]; public T Colour(int index) => this.Colours[index]; } }