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

22 lines
390 B
C++

#ifndef STAR_POPUP_INTERFACE_HPP
#define STAR_POPUP_INTERFACE_HPP
#include "StarPane.hpp"
namespace Star {
STAR_CLASS(PopupInterface);
class PopupInterface : public Pane {
public:
PopupInterface();
virtual ~PopupInterface() {}
void displayMessage(String const& message, String const& title, String const& subtitle, Maybe<String> const& onShowSound = {});
private:
};
}
#endif