mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-05-06 23:25:42 -04:00
23 lines
374 B
C++
23 lines
374 B
C++
#pragma once
|
|
|
|
#include "imgui_manager.h"
|
|
|
|
namespace ImGuiManager {
|
|
void RenderOverlays();
|
|
}
|
|
|
|
namespace SaveStateSelectorUI {
|
|
|
|
static constexpr float DEFAULT_OPEN_TIME = 5.0f;
|
|
|
|
void Open(float open_time = DEFAULT_OPEN_TIME);
|
|
void Close();
|
|
|
|
void SelectNextSlot();
|
|
void SelectPreviousSlot();
|
|
|
|
void LoadCurrentSlot();
|
|
void SaveCurrentSlot();
|
|
|
|
} // namespace SaveStateSelectorUI
|