osb/source/frontend/StarPopupInterface.hpp
2024-02-25 15:46:47 +01:00

20 lines
329 B
C++

#pragma once
#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:
};
}