mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-27 07:15:32 -04:00
18 lines
615 B
C++
18 lines
615 B
C++
#pragma once
|
|
|
|
#include <aurora/aurora.h>
|
|
#include <aurora/event.h>
|
|
|
|
namespace settings_overlay {
|
|
// Apply persistent controller settings once Aurora has discovered host devices.
|
|
void InitializeRuntimeSettings() noexcept;
|
|
// Draw the F10 settings bar before each Aurora present.
|
|
void HandleEvents(const AuroraEvent* events) noexcept;
|
|
void Draw() noexcept;
|
|
bool StartupScreenVisible() noexcept;
|
|
void NotifyStrapInputAccepted() noexcept;
|
|
void AdvancePresentedFrame() noexcept;
|
|
// Put host controllers back to a neutral state before the process ends.
|
|
void ReleaseControllers() noexcept;
|
|
} // namespace settings_overlay
|