JKSV/Include/UI/RenderFunctions.hpp
2024-12-05 20:04:47 -05:00

10 lines
299 B
C++

#pragma once
#include "SDL.hpp"
// These are just functions to render generic parts of the UI.
namespace UI
{
void RenderDialogBox(SDL_Texture *Target, int X, int Y, int Width, int Height);
void RenderBoundingBox(SDL_Texture *Target, int X, int Y, int Width, int Height);
} // namespace UI