mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
10 lines
No EOL
248 B
C++
10 lines
No EOL
248 B
C++
#pragma once
|
|
#include "pch.h"
|
|
|
|
class GbConstants
|
|
{
|
|
public:
|
|
static constexpr uint32_t ScreenWidth = 160;
|
|
static constexpr uint32_t ScreenHeight = 144;
|
|
static constexpr uint32_t PixelCount = GbConstants::ScreenWidth * GbConstants::ScreenHeight;
|
|
}; |