mirror of
https://github.com/patchzyy/wiicompiled
synced 2026-09-10 17:16:47 -04:00
16 lines
506 B
C++
16 lines
506 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;
|
|
} // namespace settings_overlay
|