mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-07-29 22:24:28 +00:00
14 lines
264 B
C#
14 lines
264 B
C#
// <copyright file="ColourShades.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
namespace EightBit.GameBoy
|
|
{
|
|
public enum ColourShades
|
|
{
|
|
Off,
|
|
Light,
|
|
Medium,
|
|
Dark,
|
|
}
|
|
}
|