You've already forked pico-launcher
mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-09 16:28:48 -08:00
15 lines
238 B
C++
15 lines
238 B
C++
#pragma once
|
|
#include "core/math/Rgb.h"
|
|
|
|
class VramContext;
|
|
|
|
class Rgb6Palette
|
|
{
|
|
public:
|
|
void UploadGraphics(const VramContext& vramContext);
|
|
void ApplyColor(const Rgb<6, 6, 6>& color) const;
|
|
|
|
private:
|
|
u32 _vramOffset = 0;
|
|
};
|