Starbound/source/frontend/StarSimpleTooltip.hpp
2025-03-21 22:23:30 +11:00

16 lines
220 B
C++

#ifndef STAR_SIMPLE_TOOLTIP_HPP
#define STAR_SIMPLE_TOOLTIP_HPP
#include "StarString.hpp"
namespace Star {
STAR_CLASS(Pane);
namespace SimpleTooltipBuilder {
PanePtr buildTooltip(String const& text);
};
}
#endif