mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-10 19:30:42 +00:00
12 lines
242 B
C#
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);
|
|
}
|
|
}
|