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:
17
arm9/source/themes/custom/CustomTopIconInfo.h
Normal file
17
arm9/source/themes/custom/CustomTopIconInfo.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#pragma once
|
||||
#include "core/math/Point.h"
|
||||
#include "core/math/Rgb.h"
|
||||
|
||||
class CustomTopIconInfo
|
||||
{
|
||||
public:
|
||||
CustomTopIconInfo(const Point& position, const Rgb8& blendColor)
|
||||
: _position(position), _blendColor(blendColor) { }
|
||||
|
||||
const Point& GetPosition() const { return _position; }
|
||||
const Rgb8& GetBlendColor() const { return _blendColor; }
|
||||
|
||||
private:
|
||||
Point _position;
|
||||
Rgb8 _blendColor;
|
||||
};
|
||||
Reference in New Issue
Block a user