mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
Add various extra customization options for custom themes. Fixes #40
This commit is contained in:
15
arm9/source/themes/custom/CustomBannerListTextElementInfo.h
Normal file
15
arm9/source/themes/custom/CustomBannerListTextElementInfo.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#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;
|
||||
};
|
||||
Reference in New Issue
Block a user