#ifndef DRAW_H_ #define DRAW_H_ #include #include "sdAccessor.h" #include "window.h" const u16 fileStartPos = 2; const u16 manualStartPos = 16; const size_t X_SCALE = 8; const size_t Y_SCALE = 8; const u16 screenHeight = ( 240 - (Y_SCALE * fileStartPos) )/ Y_SCALE; void InitializeGraphics(void); void Draw(Window& top, Window& bottom,SdAccessor& sd); #endif /* DRAW_H_ */