Files
dilemmaker/source/japi/font.h
2025-11-18 20:23:09 +01:00

10 lines
204 B
C++

#pragma once
#include <stdint.h>
namespace font
{
void load(const char* filename);
void print(const char* text, int x, int y, uint32_t color = 0xffffffff);
const int len(const char *text);
}