#include #include #include namespace ADVect::Graphics { void Init(u16 width, u16 height); 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& s, u32 pos_x, u32 pos_y, u32 col); }