1
0
Fork 0

Platform/PlatformApplication: define getMessageQueue() here as it is not platform specific.

This commit is contained in:
Henrik Hautakoski 2023-08-22 20:24:59 +02:00
parent 4380f1ed01
commit 2ac3b5b8cc
6 changed files with 12 additions and 18 deletions

View file

@ -22,9 +22,4 @@ PlatformInput& Win32Application::getInput()
return m_input;
}
MessageQueue& Win32Application::getMessageQueue()
{
return m_messageQueue;
}
} // namespace sp

View file

@ -22,13 +22,10 @@ public :
virtual PlatformInput& getInput();
virtual MessageQueue& getMessageQueue();
protected :
//Win32Display m_display;
Win32Input m_input;
MessageQueue m_messageQueue;
};
} // namespace sp