/*************************************************/ /* default_theme.h */ /*************************************************/ /* This file is part of: */ /* GODOT ENGINE */ /*************************************************/ /* Source code within this file is: */ /* (c) 2007-2016 Juan Linietsky, Ariel Manzur */ /* All Rights Reserved. */ /*************************************************/ #ifndef DEFAULT_THEME_H #define DEFAULT_THEME_H #include "scene/resources/theme.h" /** @author Juan Linietsky */ void fill_default_theme(Ref& theme,const Ref & default_font,const Ref & large_font,Ref& default_icon, Ref& default_style,bool p_hidpi); void make_default_theme(bool p_hidpi, Ref p_font); void clear_default_theme(); #endif