/* * BSD 2-Clause “Simplified” License * Copyright (c) 2019, Aldrik Ramaekers, aldrik.ramaekers@protonmail.com * All rights reserved. */ #ifndef INCLUDE_TOOPTIP #define INCLUDE_TOOPTIP char tooltip_buffer[100]; s32 tooltip_x = 0; s32 tooltip_y = 0; bool tooltop_visible = false; void show_tooltip(s32 x, s32 y, char* buf); void update_render_tooltip(); #endif