mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-10 00:29:23 +00:00
20 lines
612 B
C#
20 lines
612 B
C#
|
// <copyright file="DisplayCharacteristics.cs" company="Adrian Conlon">
|
|||
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|||
|
// </copyright>
|
|||
|
namespace EightBit.GameBoy
|
|||
|
{
|
|||
|
public static class DisplayCharacteristics
|
|||
|
{
|
|||
|
public const int BufferWidth = 256;
|
|||
|
public const int BufferHeight = 256;
|
|||
|
|
|||
|
public const int BufferCharacterWidth = BufferWidth / 8;
|
|||
|
public const int BufferCharacterHeight = BufferHeight / 8;
|
|||
|
|
|||
|
public const int RasterWidth = 160;
|
|||
|
public const int RasterHeight = 144;
|
|||
|
|
|||
|
public const int PixelCount = RasterWidth * RasterHeight;
|
|||
|
}
|
|||
|
}
|