mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
17 lines
346 B
C++
17 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 post_open() override {};
|
|
};
|
|
}
|
|
|
|
#endif |