EightBitNet/EightBit/IMapper.cs

12 lines
242 B
C#

// <copyright file="IMapper.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
public interface IMapper
{
MemoryMapping Mapping(ushort absolute);
}
}