mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-18 21:05:39 +00:00
19 lines
348 B
C++
19 lines
348 B
C++
#pragma once
|
|
|
|
#include <Eigen/Dense>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
class ThemeData;
|
|
class Font;
|
|
|
|
struct HelpStyle
|
|
{
|
|
Eigen::Vector2f position;
|
|
unsigned int iconColor;
|
|
unsigned int textColor;
|
|
std::shared_ptr<Font> font;
|
|
|
|
HelpStyle(); // default values
|
|
void applyTheme(const std::shared_ptr<ThemeData>& theme, const std::string& view);
|
|
}; |