Files
pico-launcher/arm9/source/themes/custom/CustomMainBackground.h
2025-11-25 17:41:31 +01:00

9 lines
267 B
C++

#pragma once
#include "../background/IThemeBackground.h"
class CustomMainBackground : public IThemeBackground
{
public:
void Draw(GraphicsContext& graphicsContext) override;
void LoadResources(const ITheme& theme, const VramContext& vramContext) override;
};