14 lines
218 B
C++
14 lines
218 B
C++
|
|
#pragma once
|
|
|
|
namespace nostalgia::core {
|
|
|
|
constexpr auto PixelsPerTile = 64;
|
|
constexpr auto TileWidth = 8;
|
|
constexpr auto TileHeight = 8;
|
|
|
|
constexpr auto FileExt_ng = ".ng";
|
|
constexpr auto FileExt_npal = ".npal";
|
|
|
|
}
|