#ifndef BOOTLOADER_INTERFACE #define BOOTLOADER_INTERFACE #include #include #include namespace Bootloader { class Interface { private: static void drawImage(KDContext* ctx, const Image* image, int offset); public: static void draw(); }; } #endif