2015-08-05 05:54:00 -04:00
|
|
|
/*
|
|
|
|
|
* draw.h
|
2016-03-23 02:27:53 +01:00
|
|
|
* by Reisyukaku / Aurora Wright
|
|
|
|
|
* Code to print to the screen by mid-kid @CakesFW
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2016 All Rights Reserved
|
2015-08-05 05:54:00 -04:00
|
|
|
*/
|
|
|
|
|
|
2016-03-11 15:08:05 +01:00
|
|
|
#pragma once
|
2016-03-06 03:41:07 +01:00
|
|
|
|
2015-08-05 05:54:00 -04:00
|
|
|
#include "types.h"
|
|
|
|
|
|
2016-03-23 02:27:53 +01:00
|
|
|
#define SPACING_VERT 10
|
|
|
|
|
#define SPACING_HORIZ 8
|
|
|
|
|
|
2016-02-29 16:28:43 +01:00
|
|
|
void loadSplash(void);
|
2016-03-23 02:27:53 +01:00
|
|
|
void clearScreens(void);
|
|
|
|
|
void drawCharacter(char character, int pos_x, int pos_y, u32 color);
|
|
|
|
|
int drawString(const char *string, int pos_x, int pos_y, u32 color);
|