EightBitNet/LR35902/ColourShades.cs

17 lines
317 B
C#
Raw Normal View History

// <copyright file="ColourShades.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
namespace GameBoy
{
public enum ColourShades
{
Off,
Light,
Medium,
Dark
}
}
}