mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-07-14 07:01:05 -05:00
10 lines
299 B
C++
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
|