mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-17 22:17:19 +01:00
14 lines
433 B
C++
14 lines
433 B
C++
#ifndef DEFAULT_THEME_H
|
|
#define DEFAULT_THEME_H
|
|
|
|
/* default_theme.h */
|
|
|
|
|
|
#include "scene/resources/theme.h"
|
|
|
|
void fill_default_theme(Ref<Theme> &theme, const Ref<Font> &default_font, const Ref<Font> &large_font, Ref<Texture> &default_icon, Ref<StyleBox> &default_style, float p_scale);
|
|
void make_default_theme(bool p_hidpi, Ref<Font> p_font);
|
|
void clear_default_theme();
|
|
|
|
#endif
|