mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-21 17:24:37 -05:00
14 lines
191 B
C++
14 lines
191 B
C++
#pragma once
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
namespace ui
|
|
{
|
|
void settInit();
|
|
void settExit();
|
|
void settUpdate();
|
|
void settDraw(SDL_Texture *target);
|
|
|
|
extern ui::menu *settMenu;
|
|
}
|