FeatherMC/src/world/PalettedContainer.h

13 lines
209 B
C
Raw Normal View History

2020-08-13 04:10:44 +01:00
#pragma once
#include "Palette.h"
namespace Feather
{
// A container that maps values from a local palette to a
template <typename T>
class PalettedContainer
{
const Palette<T>& m_globalPalette;
};
}