mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-08 16:31:38 +00:00
fc84e05839
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
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;
|
|
}
|
|
}
|