mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-04-25 07:57:04 -05:00
13 lines
205 B
C++
13 lines
205 B
C++
#pragma once
|
|
|
|
namespace ui
|
|
{
|
|
void usrInit();
|
|
void usrExit();
|
|
void usrUpdate();
|
|
void usrDraw(SDL_Texture *target);
|
|
|
|
//A lot of stuff needs access to this
|
|
extern ui::menu *usrMenu;
|
|
}
|