11 lines
198 B
C
11 lines
198 B
C
#ifndef CONSOLE_H
|
|
#define CONSOLE_H
|
|
|
|
#include "shitgui.h"
|
|
|
|
void console_init(SG_Context *ctx);
|
|
void console_clear(u32 color);
|
|
void console_set_color(u32 color);
|
|
void kprint(const char *str);
|
|
|
|
#endif |