mirror of
https://github.com/BanjoRecomp/BanjoRecomp
synced 2026-05-23 14:41:41 -04:00
af8163cf87
* 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>
17 lines
508 B
C++
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
|