Porytiles
Loading...
Searching...
No Matches
bgr_internal_tile.hpp
Go to the documentation of this file.
1#pragma once
2
5
6namespace porytiles {
7
8class BgrInternalTile final : public Tile<std::uint8_t> {
9 BgrPal pal_;
10
11 public:
12 BgrInternalTile() = default;
13};
14
15} // namespace porytiles
A single 8x8 pixel tile with an arbitrary pixel data type.
Definition tile.hpp:15