mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-04-26 01:59:55 -05:00
15 lines
272 B
C++
15 lines
272 B
C++
#pragma once
|
|
|
|
namespace ui
|
|
{
|
|
void usrInit();
|
|
void usrExit();
|
|
void usrRefresh();
|
|
void usrUpdate();
|
|
void usrDraw(SDL_Texture *target);
|
|
|
|
//A lot of stuff needs access to these
|
|
extern ui::menu *usrMenu;
|
|
extern ui::slideOutPanel *usrSelPanel;
|
|
}
|