12 lines
130 B
C++
12 lines
130 B
C++
|
|
||
|
#pragma once
|
||
|
|
||
|
namespace display
|
||
|
{
|
||
|
|
||
|
void draw_text(int x, int y, const char* str);
|
||
|
void draw_box(int x, int y, int h, int w);
|
||
|
|
||
|
}
|
||
|
|