mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-18 12:33:30 +00:00
15 lines
338 B
C++
15 lines
338 B
C++
#ifndef IUIRELAY_H
|
|
#define IUIRELAY_H
|
|
|
|
#include <Common/TString.h>
|
|
|
|
class IUIRelay
|
|
{
|
|
public:
|
|
virtual void AsyncMessageBox(const TString& rkInfoBoxTitle, const TString& rkMessage) = 0;
|
|
virtual bool AskYesNoQuestion(const TString& rkInfoBoxTitle, const TString& rkQuestion) = 0;
|
|
};
|
|
extern IUIRelay *gpUIRelay;
|
|
|
|
#endif // IUIRELAY_H
|