mirror of
https://git.stationery.faith/corn/corn.git
synced 2024-11-13 01:22:08 +00:00
14 lines
163 B
C
14 lines
163 B
C
|
#pragma once
|
||
|
|
||
|
#include <shim.h>
|
||
|
|
||
|
/**
|
||
|
* Initalizes the screen and framebuffer
|
||
|
*/
|
||
|
void screen_init(void);
|
||
|
|
||
|
/**
|
||
|
* Redraws the screen
|
||
|
*/
|
||
|
void screen_redraw(void);
|