Files
Darío af8163cf87 Add clouds and logo to launcher. (#81)
* Add clouds and logo to launcher.

Co-Authored-By: LJSTAR <31629427+ljstarbird@users.noreply.github.com>

* Update RecompFrontend to fix lunasvg.

* Fix timing issue for launcher code.

---------

Co-authored-by: LJSTAR <31629427+ljstarbird@users.noreply.github.com>
2026-01-16 20:29:35 -05:00

17 lines
508 B
C++

#ifndef __BANJO_LAUNCHER_H__
#define __BANJO_LAUNCHER_H__
#include "recompui/recompui.h"
namespace banjo {
void launcher_animation_setup(recompui::LauncherMenu *menu);
void launcher_animation_update(recompui::LauncherMenu *menu);
constexpr float launcher_options_right_position_start = 96.0f;
constexpr float launcher_options_right_position_end = 96.0f + 24.0f;
constexpr float launcher_options_top_offset = 96.0f;
constexpr float launcher_options_title_offset = 120.0f;
}
#endif