9 lines
155 B
C++
9 lines
155 B
C++
#pragma once
|
|
|
|
namespace font
|
|
{
|
|
void load(const char* filename);
|
|
void print(const char* text, int x, int y);
|
|
const int len(const char *text);
|
|
}
|