mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
18 lines
346 B
C++
18 lines
346 B
C++
#ifndef _BOOTLOADER_INTERFACE_MENUS_WARNING_H_
|
|
#define _BOOTLOADER_INTERFACE_MENUS_WARNING_H_
|
|
|
|
#include <bootloader/interface/src/menu.h>
|
|
#include <bootloader/slots/slot.h>
|
|
|
|
namespace Bootloader {
|
|
class WarningMenu : public Menu {
|
|
public:
|
|
WarningMenu();
|
|
|
|
void setup() override;
|
|
void postOpen() override {};
|
|
};
|
|
}
|
|
|
|
#endif
|