mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-08 16:31:38 +00:00
14 lines
255 B
C#
14 lines
255 B
C#
// <copyright file="ColourShades.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
namespace LR35902
|
|
{
|
|
public enum ColourShades
|
|
{
|
|
Off,
|
|
Light,
|
|
Medium,
|
|
Dark,
|
|
}
|
|
}
|