mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-01-12 02:29:24 +01: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;
|
|
};
|