mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
22 lines
307 B
C++
22 lines
307 B
C++
#ifndef BOOTLOADER_INTERFACE
|
|
#define BOOTLOADER_INTERFACE
|
|
|
|
#include <stdint.h>
|
|
#include <kandinsky/context.h>
|
|
#include <escher/image.h>
|
|
|
|
namespace Bootloader {
|
|
|
|
class Interface {
|
|
|
|
private:
|
|
static void drawImage(KDContext* ctx, const Image* image, int offset);
|
|
|
|
public:
|
|
static void draw();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif |