mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 00:56:55 +02:00
15 lines
376 B
C++
15 lines
376 B
C++
#pragma once
|
|
#include "../../views/AppBarView.h"
|
|
|
|
class MaterialAppBarView : public AppBarView
|
|
{
|
|
SHARED_ONLY(MaterialAppBarView)
|
|
|
|
public:
|
|
void InitVram(const VramContext& vramContext) override;
|
|
|
|
private:
|
|
MaterialAppBarView(int x, int y, Orientation orientation,
|
|
int startButtonCount, int endButtonCount, const MaterialColorScheme* materialColorScheme);
|
|
};
|