NouVeL/ADVect/Graphics.h

13 lines
411 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(u16 width, u16 height);
2022-05-09 01:50:09 -04:00
void Destroy();
void RenderString(const NVL::String& s, u32& pos_x, u32& pos_y, u32 col);
void RenderString(const NVL::String& s, u32&& pos_x, u32&& pos_y, u32 col);
void RenderStringMarkup(const std::vector<NVL::Environment::Variable>& s, u32 pos_x, u32 pos_y, u32 col);
2022-05-09 01:50:09 -04:00
}