mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 17:16:57 +02:00
16 lines
308 B
C++
16 lines
308 B
C++
#pragma once
|
|
#include "core/math/Point.h"
|
|
#include "core/math/Rgb.h"
|
|
|
|
class CustomBannerListTextElementInfo
|
|
{
|
|
public:
|
|
CustomBannerListTextElementInfo(const Rgb8& textColor)
|
|
: _textColor(textColor) { }
|
|
|
|
const Rgb8& GetTextColor() const { return _textColor; }
|
|
|
|
private:
|
|
Rgb8 _textColor;
|
|
};
|