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