mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 00:56:55 +02:00
16 lines
292 B
C++
16 lines
292 B
C++
#pragma once
|
|
#include "core/math/Point.h"
|
|
#include "core/math/Rgb.h"
|
|
|
|
class CustomBottomIconInfo
|
|
{
|
|
public:
|
|
CustomBottomIconInfo(const Rgb8& blendColor)
|
|
: _blendColor(blendColor) { }
|
|
|
|
const Rgb8& GetBlendColor() const { return _blendColor; }
|
|
|
|
private:
|
|
Rgb8 _blendColor;
|
|
};
|