mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
20 lines
372 B
C++
20 lines
372 B
C++
#ifndef BOOTLOADER_INTERFACE_STATIC_INTERFACE_H
|
|
#define BOOTLOADER_INTERFACE_STATIC_INTERFACE_H
|
|
|
|
#include <stdint.h>
|
|
#include <kandinsky/context.h>
|
|
#include <escher/image.h>
|
|
|
|
namespace Bootloader {
|
|
class Interface {
|
|
|
|
public:
|
|
static void drawImage(KDContext * ctx, const Image * image, int offset);
|
|
static void drawLoading();
|
|
static void drawFlasher();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|