NouVeL/ADVect/Graphics.h

12 lines
328 B
C
Raw Normal View History

2022-05-09 01:50:09 -04:00
#include <SDL2/SDL.h>
2022-08-18 12:17:43 -04:00
#include <Common.h>
#include <Environment.h>
2022-05-09 01:50:09 -04:00
namespace ADVect::Graphics {
void Init();
void Destroy();
2022-08-18 12:17:43 -04:00
void RenderString(const NVL::String& s, u32 pos_x, u32 pos_y, const SDL_Color& attr);
void RenderStringMarkdown(const NVL::Environment::Variable& s, u32 pos_x, u32 pos_y, const SDL_Color& attr);
2022-05-09 01:50:09 -04:00
}