mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
22 lines
700 B
C
22 lines
700 B
C
#pragma once
|
|
#include "CustomBannerListTextElementInfo.h"
|
|
#include "CustomBottomIconInfo.h"
|
|
#include "CustomTopIconInfo.h"
|
|
#include "CustomTextElementInfo.h"
|
|
|
|
struct CustomThemeInfo
|
|
{
|
|
CustomTopIconInfo topIconInfo;
|
|
CustomTopTextElementInfo topBannerTextLine0Info;
|
|
CustomTopTextElementInfo topBannerTextLine1Info;
|
|
CustomTopTextElementInfo topBannerTextLine2Info;
|
|
CustomTopTextElementInfo topFileNameTextInfo;
|
|
|
|
CustomBottomIconInfo gridIconInfo;
|
|
|
|
CustomBottomIconInfo bannerListIconInfo;
|
|
CustomBannerListTextElementInfo bannerListTextLine0Info;
|
|
CustomBannerListTextElementInfo bannerListTextLine1Info;
|
|
CustomBannerListTextElementInfo bannerListTextLine2Info;
|
|
};
|