mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-19 01:30:29 +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,
|
|
}
|
|
}
|