#ifndef _OSWALD_GRAPHICS_H #define _OSWALD_GRAPHICS_H #include "oswald.h" #include "oswald_strings.h" #include "oswald_fonts.h" #include "oswald_graphics.h" void oswald_draw_Line(u8t xstart, u8t ystart, u8t xend, u8t yend); void oswald_draw_line_ww(u8t xstart, u8t ystart, u8t xend, u8t yend, u8t thickness); u8t oswald_write_character(u8t x, u8t y, oswald_font_face face, u8t Character); void oswald_write_string(u8t x, u8t y, oswald_font_face face, u8t *str); void oswald_Write_number(u8t x, u8t y, oswald_font_face face, s16t number); #endif