mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-10 19:30:42 +00:00
13 lines
218 B
C#
13 lines
218 B
C#
// <copyright file="PinLevel.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace EightBit
|
|
{
|
|
public enum PinLevel
|
|
{
|
|
Low,
|
|
High,
|
|
}
|
|
}
|