EightBitNet/LR35902/AbstractColourPalette.cs
Adrian Conlon 5185346b8d Whoops: missed some updated files caught up in the stlecop updates.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-07-21 13:12:28 +01:00

20 lines
464 B
C#

// <copyright file="AbstractColourPalette.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
namespace GameBoy
{
public class AbstractColourPalette
{
private readonly uint[] colours = new uint[4];
protected AbstractColourPalette()
{
}
public uint Colour(int index) => this.colours[index];
}
}
}