mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-25 14:45:45 -04:00
172d06f38d
* template setup * get most colors working * add lantern, midna, and heart colors * fix PaneCache naming conflict * add UI colors * fix pane cache again * override colors for items on other models * recolor heart piece models * cleanup * add support for ordon sword recoloring * recolor epona's eyelids * move option descriptions * fix mod.json * constexpr descriptions * gx.h instead of dolphin/gx/GXstruct.h * fix default midna hair color * use TextureService instead of overwriting model file data on load * update descriptions * manual cleanup * fix includes * remove unneeded include and const qualifier * UI: Add Popover, ColorInput & more; mod cleanup * Make it a bundled mod --------- Co-authored-by: Luke Street <luke@street.dev>
16 lines
327 B
C++
16 lines
327 B
C++
#pragma once
|
|
|
|
union SDL_Event;
|
|
|
|
namespace dusk::ui::input {
|
|
|
|
inline constexpr char kNavAxisEvent[] = "navaxis";
|
|
|
|
void handle_event(const SDL_Event& event) noexcept;
|
|
void update_input() noexcept;
|
|
void reset_input_state() noexcept;
|
|
void sync_input_block() noexcept;
|
|
void release_input_block() noexcept;
|
|
|
|
} // namespace dusk::ui
|