mirror of
https://github.com/love2d/love.git
synced 2026-08-16 16:20:42 +02:00
Merged default into minor
--HG-- branch : minor
This commit is contained in:
@@ -83,6 +83,11 @@ public:
|
||||
{
|
||||
int width;
|
||||
int height;
|
||||
|
||||
bool operator == (const WindowSize &w) const
|
||||
{
|
||||
return w.width == width && w.height == height;
|
||||
}
|
||||
};
|
||||
|
||||
struct MessageBoxData
|
||||
@@ -156,7 +161,7 @@ public:
|
||||
|
||||
virtual const void *getHandle() const = 0;
|
||||
|
||||
virtual bool showMessageBox(MessageBoxType type, const std::string &title, const std::string &message, bool attachtowindow) = 0;
|
||||
virtual bool showMessageBox(const std::string &title, const std::string &message, MessageBoxType type, bool attachtowindow) = 0;
|
||||
virtual int showMessageBox(const MessageBoxData &data) = 0;
|
||||
|
||||
//virtual static Window *createSingleton() = 0;
|
||||
|
||||
Reference in New Issue
Block a user