osb/source/frontend/StarPopupInterface.hpp

20 lines
329 B
C++
Raw Permalink Normal View History

#pragma once
2023-06-20 04:33:09 +00:00
#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:
};
}