mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 00:56:55 +02:00
9 lines
267 B
C++
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;
|
|
}; |