mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-04-26 01:59:55 -05:00
16 lines
265 B
C++
16 lines
265 B
C++
#pragma once
|
|
|
|
namespace ui
|
|
{
|
|
void ttlInit();
|
|
void ttlExit();
|
|
void ttlSetActive(int usr);
|
|
void refreshAllViews();
|
|
void populateFldMenu();
|
|
|
|
//JIC for func ptr
|
|
void ttlReset();
|
|
void ttlUpdate();
|
|
void ttlDraw(SDL_Texture *target);
|
|
}
|