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